$(function() {
	$('.product').click(function(){
		
		var index = $('.product').index(this);
		$('p.description').hide().eq(index).fadeIn();
				
		var product=$(this).attr('title');
		$('.productNumber').html(product);
	});
});
