/* *
 * Contains common used javascript code.
 *
 * Author: Kamil Młynarz
 * common.js
 */

$(document).ready(function(){
   $('.login').blur(function(){
       if ($(this).val() == '')
           $(this).val('Login (e-mail)');
   }).focus(function(){
       if ($(this).val() == 'Login (e-mail)')
           $(this).val('');
   });

   $('.password').blur(function(){
       if ($(this).val() == '')
           $(this).val('hasło');
   }).focus(function(){
       if ($(this).val() == 'hasło')
           $(this).val('');
   });

});
