$().ready(function(){

	clearInputs( $( "#header input.search-phrase" ), "- Szukaj -" );
	clearInputs( $( "#column-left input.login" ), "- login -" );
	clearInputs( $( "#column-left input.passwd" ), "- hasło -", true );
	
	$( ".carousel" ).jCarouselLite({
		speed: 900,
		scroll: 3,
		btnGo: [ ".carousel-control .1", ".0", ".0", ".carousel-control .2", ".0", ".0", ".carousel-control .3" ]
    });

	
});

function clearInputs( el, txt, passwd ) {
	
	$( el ).focus(function(){		
		if ( passwd == true ) this.setAttribute( "type", "password" );		
		$( this ).val( '' );
	});
	
	$( el ).blur(function(){
		if ( $( this ).val() == '' ) {
			if ( passwd == true ) this.setAttribute( "type", "text" );
			$( this ).val( txt );
		}
	});
}

