$(function(){
	$('#topspecials2 .photos a').hover(
		function(){
			$('p',this).show();
		},function(){
			$('p',this).hide();
		}
	);
});
