// JavaScript Document
$(document).ready(function(){

	$("#share_video_id").hover(function() {
		$("#myP").animate({opacity: "show", top: "-190"}, "fast");
	}, function() {
		$("#myP").animate({opacity: "hide", top: "-185"}, "fast");
	});


});

