$(document).ready(function(){
	
	$('.sponsorFlip').bind("click",function(){
		
		var elem = $(this);
		
		if(elem.data('flipped'))
		{			
			elem.revertFlip();
			elem.data('flipped',false)
		}
		else
		{			
			elem.flip({
				direction:'lr',
				speed: 350,
				onBefore: function(){					
					elem.html(elem.siblings('.sponsorData').html());
				}
			});
			elem.data('flipped',true);
		}
	});
	
	$('#changebanner').click(function() {
		$("#spinme").flip({
		    direction:'rl', 
		    content: '<img src="graphics/pitch.jpg" />', 
		    color: '#fff'
		});
		return false;
	});
	
	$('#resetbanner').click(function() {
		$("#spinme").revertFlip();
		return false;
	});
	
});
