$(document).ready( function() {

	setHoverImg();

});

function setHoverImg() {
	$('div.miniature_video_img').hover(
		function() {
			$(this).children(".mini_play_video").fadeIn();
		},
		function() {
			$(this).children(".mini_play_video").fadeOut();
		}
	);
}