$(function(){
   $("#search").focus(function(){
      var val = $(this).val();

      if(val == "... what are you looking for?"){
          $(this).val("");
      }
   });

   $("#search").blur(function(){
      var val = $(this).val();

      if(val == "") {
          $(this).val("... what are you looking for?");
      }
   });

   $("#searchBtn").click(function(){
   	
   		var search =  $("#q").attr('value');
		top.location = "http://www.lyricsface.com/tags/"+ search +".html";
   });
   
   
   $("#q").keydown(function(event){
    if(event.which  == 13) {
		
		var search =  $("#q").attr('value');
		top.location = "http://www.lyricsface.com/tags/"+ search +".html";
	}
  });

   
});

function postLink(val, pos)
{
    $("#search").val(val);
    $("#position").val(pos);
    $("#frmSearch").submit();
}
