jQuery(document).ready(function(){
	jQuery("#box-lewy, #pokaz1").mouseleave(function(){
	 	jQuery("#box-lewy").animate({marginLeft:"-1px"}, 500);
	 	jQuery("#pokaz1").animate({marginLeft:"0px"}, 465, function() { jQuery("#pokaz1").attr("id", "pokaz"); });s
	});
	
	jQuery("#pokaz").live("mouseenter", function(){
		jQuery("#pokaz").animate({marginLeft:"292px"}, 500).attr("id", "pokaz1");
		jQuery("#box-lewy").css('display', 'block').animate({marginLeft:"292px"}, 465);
	});
});

