$(document).ready(function(){
	$("<img/>")[0].src= "/i/body.png";
	var searchVal = $("#search").val();
	
    $("#search").focus(function(){
		$(this).attr("value","");
	});
	$("#search").blur(function(){
		if($(this).attr("value").length == 0){
			$(this).attr("value",searchVal);
		}			
	});
	$("form").submit(function(){
		if($("#search").attr("value") != "Enter a Youtube Link here or search directly for a Youtube Video"){
			$.post("/islink.php", {video:$("#search").val()}, function(data){
				if(data["link"] == 0){
					window.location = "/download-mp3/"+data["search"]+"/1";
				}else if(data["link"] == 1){
					window.location = "/video/"+data["title"]+"/"+data["id"];
				}else if(data["link"] == 2){
					window.location = "/clipfish/"+data["type"]+"/"+data["code"]+"/"+data["title"];
				}
			},"json");
		}
		return false;
	});
});
