$(document).ready(function(){	
   $('#url').focus(function(){
      if($('#url').val()=='Video URL ...'){
         $('#url').val('');
      }	   
   }); 
   $('#url').blur(function(){
      if(!$('#url').val()){
         $('#url').val('Video URL ...');
      }   
   });
   $('#button').click(function(){
      var URL    = $('#url').val();
      var Format = $('input:checked').val();      	   
	  if(Format!='mp3'&&Format!='mp4'){
         Format = 'mp3';
	  }
      document.location.href = 'http://www.music-clips.net/v/'+encodeURIComponent(encodeURIComponent(URL))+'/'+Format+'/';
   });
   $('.external-link').click(function(){
      window.open(this.href);
	  return false;
   });
});
