$(document).ready(function () {
	$('.products li').mouseover(function() {
		$('.products li .prod').show();
		$(this).children('.prod').hide();

	});

});


