

$(document).ready(function(){


	$("#zwin").toggle(function(){
		
		$(this).html('Ukryj &uArr;');
		$("#menu_desc").css("height", "235");
		
	}, function(){
		$(this).html('Pokaż &dArr;');
		$("#menu_desc").css("height", "5");
	});
	
	
	$("#rent_now").toggle(function(){
		
		$(this).html('Ukryj &uArr;');
		$("#rent_form").css("display", "block");
		
	}, function(){
		$(this).html('Pokaż &dArr;');
		$("#rent_form").css("display", "none");
	});
	
});


