$(document).ready(function(){
	
	/* topmenu onmouse */
	$(".main-li").hover(function () {
    vystredSubmenu = ($(this).find(".submenu").width()/2+10)*-1;
		$(this).find(".submenu").css("margin-left", vystredSubmenu).fadeIn("normal");
    return false;
  },
  function () {
    $(this).find(".submenu").fadeOut("fast");
    return false;
  });

	/* topmenu onmouse konec */

	
	/* light box */
	
	$(function(){
		$("a[rel^='lightbox']").lightbox();
	});

	
});
