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