//Skrypt wykonał Mateusz Zając. Zabrania się kopiowania skryptu i jego sprzedaży bez zgody autora.



jQuery.noConflict();

var slideSpeed = 400;

jQuery(function(){ 

	jQuery("#lewo").css("left","-220px");
	
	jQuery("#lewo").hover(
		function () {
			jQuery("#lewo").stop(true, false).animate({left: "0px"}, slideSpeed );
		}, 
		
		function () {
			jQuery("#lewo").stop(true, false).animate({left: "-220px"}, slideSpeed ); 
		}
	);
});


jQuery(function(){ 

	jQuery("#prawo").css("right","-220px");
	
	jQuery("#prawo").hover(
	
		function () {
			jQuery("#prawo").stop(true, false).animate({right: "0px"}, slideSpeed );
		}, 
		
		function () {
			jQuery("#prawo").stop(true, false).animate({right: "-220px"}, slideSpeed ); 
		}
	);
});


jQuery(function(){ 

	jQuery("#gora").css("top","-200px");
	
	jQuery("#gora").hover(
	
		function () {
			jQuery("#gora").stop(true, false).animate({top: "0px"}, slideSpeed );
		}, 
		
		function () {
			jQuery("#gora").stop(true, false).animate({top: "-200px"}, slideSpeed ); 
		}
	);
});


jQuery(function(){ 

	jQuery("#dol").css("bottom","-200px");
	
	jQuery("#dol").hover(
	
		function () {
			jQuery("#dol").stop(true, false).animate({bottom: "0px"}, slideSpeed );
		}, 
		
		function () {
			jQuery("#dol").stop(true, false).animate({bottom: "-200px"}, slideSpeed ); 
		}
	);
});
