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

	if($j.browser.msie) $j("#userLinks").css({ 'width': 475, 'margin-left': 490 });
	
	// Init Slideshow
	$j("#hero").tabs({
		event: 'mouseover',
		fx: { opacity: 'toggle' }
	});
	
	$j("#hero").tabs('rotate', 6000, true);
	
	$j("#hero").mouseover(function() {
		$j(this).tabs('rotate', 0);
	}).mouseout(function() {
		$j(this).tabs('rotate', 6000);
	});
	
	
});

