var haslo_klikniete = 0 ;

$(document).ready( function() {
 if( $("#alert").length > 0 ) {
   alert( $("#alert").html() ) ;
 }
	
    $("input").each( function() {
        if( $(this).attr( 'title' ) != '' ) {
            $(this).attr( 'hint', $(this).attr( 'title' ) ) ;
            $(this).val( $(this).attr( 'title' ) ) ;
            $(this).attr( 'title', '' ) ;
            
            $(this).blur( function() {
				   
                if( $(this).val() === '' ) $(this).val( $(this).attr( 'hint' ))
            }
            ) ;
            $(this).focus( function() {
				  
                if( $(this).val() == $(this).attr( 'hint' )) $(this).val('' ) ;
            }
            ) ;
        }
    }
    ) ;
	 
	 $("#zmien_woj").click( function() {
	   $("ul.sub").toggle() ;
	 }) ;
	 
	 $("li.main_kat a").click( function() {
	   if( $(this).siblings('ul').length == 0 ) return true ;
		else {
	   $("li.main_kat ul").hide() ;
		$(this).siblings('ul').show() ;
		
		$("li.main_kat").removeClass( 'active' ) ;
		$(this).parent().addClass( 'active' ) ;
	   return false ;
		}
	 }) ;
}
) ;

