$(document).ready(function(){
	$("#video_but").click(function(){
		var url = $.trim($("#video_in").attr('value'));
		//var url = 'http://www.worldstarhiphop.com/videos/video.php?v=wshhSt8M01QnMBjKNRkA';
		
		var download;
		var down_link;
		$.post("videograb.php", { address: url}, function(data){
			download = data;
		});
		
		$("#download_link").ajaxComplete(function(request, settings){
			$(this).text(" ");
		
			$("#download_item").append("<a href='"+download+"'>Right click and hit Save Link As...</a>");
			$("#video_in").attr('value', '');
		});
		
	});
	
	$("#video_in").mousedown(function(){
		$(this).attr('value', '');
	});
	
	/*$("#video_in").mouseout(function(){
		
		var x = $(this).attr('value');
		if(x == ""){
			$(this).attr('value', '...Please place URL Here....');
		}
	});*/
});