jQuery(document).ready(function($) {
	if (jQuery.browser.msie) { 
		$('#globalnav li a').css({fontSize: "15px"});
	  if(parseInt(jQuery.browser.version) == 6) { 
	  } 
	}
	$(window).ready(function(){
		$(function() { 
		    // setup ul.tabs to work as tabs for each div directly under div.panes 
		    $("ul.tabs").tabs("div.panes > 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: 4000
				}); 
		});
	});
		
});
