// JavaScript Document for Olay UK Buy now page.

$(document).ready(function(){
			
	// Rollovers to black out other buy now links when rolling over one.
	$('#rightColumn ul#stores li').hover(
			
		function(){
			
			$(this).addClass('buyOn');
			
			$('#rightColumn ul#stores li').each(function(){			
														
					if (!($(this).hasClass('buyOn'))) {
						
						$(this).children('a').children('img').after('<div class="blackout"></div>');
						
					}
					
			});
			
			$('.blackout').css('opacity', '0.50');
			$('.blackout').fadeIn('slow');
			
		},
		
		function(){
			
			$(this).removeClass('buyOn');
			$('.blackout').remove();
			
		}
		 
	);
	
});
