/* Enable nav hovers in IE */
sfHover = function() {
	var sfEls = document.getElementById("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() { 
//	$(".scrollable").scrollable({size: 1}).circular().autoscroll({  // News Scroller
//		interval: 5000,
//		api: true
//	}); 
	
	$("ul.tabs").tabs(".scrollable > div", { 
 
        // enable "cross-fading" effect 
        effect: 'fade', 
        fadeOutSpeed: "slow", 
 
        // start from the beginning after the last tab 
        rotate: true   
 
    // use the slideshow plugin. It accepts its own configuration 
	}).slideshow({autoplay: true, interval: 6000 });
});



