$(document).ready(
	
	
	function()
	{
		$('#menu_up li').not('#menu_up li li').hover(
			function(){
				
				var pos = $(this).children('a').position();
				//alert(pos.left+" "+pos.top);
				$(this).children('a').css('color','#66cc66');
				$(this).children('a.aa').css('background-image','url(/public/images/arrow_menu_2.gif)');
				var mLeft = $(this).children('a.aa').css("margin-left");
				if(mLeft)
					mLeft=parseInt(mLeft.substring(0,mLeft.length-2));
				else
					mLeft=0;
				
				$(this).children('ul').css('left',pos.left+mLeft-21+"px");
				$(this).children('ul').show();
				
			}
		,function(){
			$(this).children('ul').hide();
			$(this).children('a.aa').css('background-image','url(/public/images/arrow_menu_1.gif)');
			$(this).children('a').css('color','#fff');
		})
})



$(function(){
	$(".img4ltbx").lightBox({
	overlayBgColor: '#222',
	overlayOpacity: 0.8,
	imageLoading: '/public/images/lightbox-ico-loading.gif',
	imageBtnClose:'/public/images/lightbox-btn-close.gif',
	imageBtnPrev: '/public/images/lightbox-btn-prev.gif',
	imageBtnNext: '/public/images/lightbox-btn-next.gif',
	containerResizeSpeed: 300,
	txtImage: 'Obraz',
	txtOf: 'z'
   });
})
