jQuery(document).ready(function($) {

	if (jQuery.browser.msie) { 
	  if(parseInt(jQuery.browser.version) == 6) { 
		$('#sidebar').css({float:'right', clear:"none", margin: "0 0 0 -100%", position:"absolute", top:"0", right:"0"});
	  } 
	}

/*
Slide Show Tabs
*/
	$(function() { 
	    // setup ul.tabs to work as tabs for each div directly under div.panes 
	    $("#slider ul.tabs").tabs("#slider 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,
				autopause: false,
				clickable: false,
				interval: 4000
			}); 
	});


	$('#globalnav_container li.subnav').hover(function(){
		$(this).toggleClass('hover').find('ul').fadeIn('fast');
	}, function(){
		$(this).toggleClass('hover').find('ul').fadeOut('fast');
	});
		
});
