var notAgain = 0;function RotateBranding() {		if( notAgain == 0){		jQuery('div#branding ul li').css({opacity: 0.0});				jQuery('div#branding ul li:first').css({opacity: 1.0});				setInterval('switchBrand()',4000);	}	}function switchBrand() {			var current = (jQuery('div#branding ul li.show_rotate_image') ?  jQuery('div#branding ul li.show_rotate_image') : jQuery('div#branding ul li:first'));	var next = ((current.next().length) ? ((current.next().hasClass('show_rotate_image')) ? jQuery('div#branding ul li:first') : current.next()) : jQuery('div#branding ul li:first'));			next.css({opacity: 0.0})	.addClass('show_rotate_image')	.animate({opacity: 1.0}, 1000);		current.animate({opacity: 0.0}, 1000)	.removeClass('show_rotate_image');	};jQuery(document).ready(function(){		RotateBranding();    jQuery("#toprightimg").click(function(){		notAgain = 1;		jQuery("#branding").html('<img src="/images/2009/homepage_rotate/develop_message.jpg" />');					});		jQuery("#topleftimg").click(function(){		notAgain = 1;		jQuery("#branding").html('<img src="/images/2009/homepage_rotate/whySprint_message.jpg" />');					});		jQuery("#bottomrightimg").click(function(){		notAgain = 1;		jQuery("#branding").html('<img src="/images/2009/homepage_rotate/support_message.jpg" />');					});		jQuery("#bottomleftimg").click(function(){		notAgain = 1;		jQuery("#branding").html('<img src="/images/2009/homepage_rotate/gotoMarket_message.jpg" />');					});						});
