	$(document).ready(function(){
		
		$('html').click(function() {
			 $('#submenu').animate( {'top' : '-118px'}, 500);
 		});

		 $('#oferta').click(function(event){
     		event.stopPropagation();
 		});
		
		$("#oferta").click(
			function () {
				if ($("#submenu").queue().length == 0){
        			if ($("#submenu").css('top') != '62px'){
						$("#submenu").animate({'top' : '62px'}, 500);
					}else{
						$('#submenu').animate( {'top' : '-118px'}, 500);
					};
				};				
			});
		$("#submenu-stopka, #submenu-chowacz").click(
			function () {
				if ($("#submenu").queue().length == 0){
        			$('#submenu').animate( {'top': '-118px'}, 500);
				};				
			});	
	 });
