<!-- Options for main content slider -->
$(document).ready(function(){
	$("#mcSlider").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
	$("#mcSlider").hover(
	function() {
	$("#mcSlider").tabs("rotate",0,true);
	},
	function() {
	$("#mcSlider").tabs("rotate",5000,true);
	}
	);
});

