$(document).ready(function() { 
   $('#loginFormName input#meno').focus(function()
      {
      if ($(this).attr('value')=='Login')
         {
         $(this).attr('value', '');
         }
      });
   $('#loginFormPass input#pass').focus(function()
      {
      if ($(this).attr('value')=='Heslo')
         {
         $(this).attr('value', '');
         }
      });
   $('#keyword').focus(function()
      {
      if ($(this).attr('value')=='Sem zadajte hľadaný text ...')
         {
         $(this).attr('value', '');
         }
      });
      
   $('a.blank').click(function()
      {
      this.target = "_blank";
      });
      
   /* registracia */
   
   $('a.regStandard').click(function(){
      $('div.regFacebook').slideUp('slow', function(){
        $('div.regStandard').slideDown('slow');
        });
   })
   
   $('a.regFacebook').click(function(){
      $('div.regStandard').slideUp('slow', function(){
        $('div.regFacebook').slideDown('slow');
        });
   })   
});
