$(document).ready(function() {
	$(".menu_top li").hoverIntent(makeTall,makeSmall);
	/*$(".menu_top li").mouseenter(function() {
			$(this).find(".menu_rozw").clearQueue()
		$(this).find(".menu_rozw").stop(true)
		$(this).find(".menu_rozw").slideDown('fast')
	});
	$(".menu_top li").mouseleave(function() {
		$(this).find(".menu_rozw").clearQueue()
		$(this).find(".menu_rozw").stop(true)
		$(this).find(".menu_rozw").slideUp('fast')
	});*/
	$(".galeria_foto").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 4
    });
  });
function makeTall(){ $(this).find(".menu_rozw").slideDown('fast')}
function makeSmall(){ $(this).find(".menu_rozw").slideUp('fast')}


