// PROMO ROLLOVERS

	$(function() {
			   
		$("#content #primary .promo").hover(
			function(e){
				var info = $(this).find('.info');
				info.animate({bottom:"0"},300);
				return false;	
			},
			function(e){
				var info = $(this).find('.info');
				info.animate({bottom:"-2em"},300);				
				return false;	
			}
		);
		
		// flash basket
		$('#miniBasket.highlight').css('background-color','#f09');
		$('#miniBasket.highlight').animate({backgroundColor:"#000"},1000);
		
		// flash alerts
		$('.box').css('background-color','#fff');
		$('.box').animate({backgroundColor:"#000"},1000);
		
		// focus product viewer
		$('.productViewer').focus();
		
	});
	