

$(document).ready(function() {

	$(".text_photo_inset").mouseover(function() {
		$(".text_photo_inset").children(".text_photo_inset_rollover").show();
	
	});
	
	$(".text_photo_inset").mouseout(function() {
		$(".text_photo_inset").children(".text_photo_inset_rollover").hide();
		
	});

});

