$(document).ready(function() {		
	
	$('.textbox').click(function() {
		var Value = jQuery(this).attr('value');
		if (Value == "Nazwa Użytkownika") {
			$('#login').val('');
		}
		if (Value == "Hasło") {
			$('#password').val('');
		}
	});
	
	$('#footer_hide').click(function() {
		jQuery('.footer .sectors').animate({opacity: '0'});
		setTimeout(function(){				
			jQuery('.footer').animate({height: '80px'});
			jQuery('.footer .sectors').css({display: 'none'});
			jQuery('.footer .cms').animate({marginTop: '0px'});
			jQuery('.footer .cms').animate({paddingTop: '+=20px'});
		},500);
	});
		
	$('#no_java').css({display: "none"});
	
	$('.action-menu').click(function () {
		$('.account-menu').toggle();
	});          

});

