$(document).ready(function(){


	$('#products .item .info').css('display','none');
	$('#products .item .name').css('display','none');
	
	$('#products .item').live('mouseenter',function(){
	
		$(this).find('.info').css('display','block');
		$(this).find('.name').css('display','block');
	
	});
	
	$('#products .item').live('mouseleave',function(){
	
		$(this).find('.info').css('display','none');
		$(this).find('.name').css('display','none');
	
	});
	
	$('#thumbs li').live('click',function(){
	
		$('#image img').attr('src','/uploads/product_images/'+$(this).attr('rel'));
	
	});

});
