$(document).ready(function() {	
	
	// Hover function to blur other products on rollover.
	$('.prodInfo:has(div)').hover(
																			
		function(){
			$(this).addClass('packshotOn');
			$('.prodInfo').each(function() {														
				if (!($(this).hasClass('packshotOn'))) {
					$(this).after('<div class="blur"></div>');
				} else {
					$(this).children('.info').fadeIn('slow');
				}
			});
			//$('.blur').css('opacity', '0.75').fadeIn('slow');
		},
		
		function(){
			$(this).children('.info').css('display', 'none');
			$(this).removeClass('packshotOn');
			$('.blur').remove();
		}
		 
	);
	
	// Click function to disallow clicking on products.
	$('#containerPackshots li a.prodInfoLink').click(function() {
		return false;
	});
	
});