// JavaScript Document for Olay UK Homepage.

$(document).ready(function(){
	
	// Dynamically positioning the sparkles behind each button. Because of the dynamic sizing and our friend IE we have to resort to JavaScript to do this for us.
	$('.calloutHomeLinks').each(function(i){
			
		$(this).attr('id', 'links' + i);
		
		var left = -11;
		
		$('#links' + i + ' > .btnFlare').each(function(j){
					
				$(this).css({'left':left + 'px'});
					
				left = left + 2 + $('#links' + i + ' > .containerBtn').eq(j).width();
				
		});
		
	});
	
});