$(function()
{
	$(".videogal").click(function()
	{
		$.ajax({
		   type: "GET",
		   url: "video/videoplayer/index.php",
		   data: "file=" + $(this).attr("href") + "&title=" + $(this).attr("title"),
		   success: function(msg){
			 //alert( "Data Saved: " + msg );
			 
			 	scrollTo(0, 0);
				$("body").append('<div id="modal-layer"></div>');
				$("#boundRoot").append('<div id="modal">' + msg + '</div>');
				
				$("#modal-layer, #modal a").bind("click", function()
				{
					$("#modal-layer, #modal").fadeOut(300, function() { $(this).remove(); });
					return false;
				});
				
				$("#modal-layer, #modal").fadeIn(300);
				return false;
			 
		   }
		 });
		
		return false;
	});
});