$(document).ready(function() {
    var timer = 0;
    
   $('.meni ul > li').mouseover(function() {
        var hasSubmenu = $('#submenu-' + $(this).attr('id')).length;

        $('.submenu').hide();
        subMenuOpen = false;
        
        window.clearTimeout(timer);
  
        if (hasSubmenu) {
            $('#submenu-' + $(this).attr('id')).show();
            subMenuOpen = true;
        }
    });

   $('.submenu').mouseout(function() {
      timer = window.setTimeout(function() {
                                 $('.submenu').hide();
                                 
                                 subMenuOpen = false;
                             }, 500);
    });
   
   	$(".thumbs a").overlay({ 
		// putanja do lightboxa
		target: '#gallery', 
	 
		// efekat (da zacrni ekran)
		expose: '#ccc' 
	}).gallery({ 
		speed: 800 
	});
});
