
$(window).ready(function() {
    $('#slides').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 8000
	});
	$('#contact_actualcopy').jScrollPane({showArrows: true});
	
	$(".scrollable").scrollable();
	$(".scrollablet").scrollable();
	
	$("#treatments-left-copy img[title]").tooltip();
	
	
    document.getElementById('contact-holder').style.visibility = 'visible';
    document.getElementById('home-holder').style.visibility = 'visible';
    document.getElementById('treatments-holder').style.visibility = 'visible';
	document.location = '#home';


});

function doNext(whereto){
	var api = $(".scrollable").data("scrollable");
	api.seekTo(whereto,500);
}

function doNextT(whereto){
	var api = $(".scrollablet").data("scrollable");
	api.seekTo(whereto,500);
}


