/* Main Navigation hover for IE6 
-------------------------------------*/
sfHover = function() {
var sfEls = document.getElementById("main-nav").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=" sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

$(document).ready(function() {	
	
	//cufon
	Cufon.replace('#content h2');
	Cufon.replace('#content h3');
	
	//Carousel
    jQuery(".list-recentwork").jcarousel({scroll: 1});

	
	 $('#testimonials-patients a.next').click(function(){
		    var nextdiv = '#' + $(this).attr('rel');
		    var thisdiv = '#' + $(this).parent().attr('id');
			$(nextdiv).fadeIn();
	        $(thisdiv).fadeOut();
			
		});
	
	
		
});




