$(document).ready(function() {

	/*$(".prvi_nivo").hover(function() {
    $(this).addClass("hover");
	}, 
	  function () {
		$(this).removeClass("hover");
	});
	
	$(".drugi_nivo").hover(function() {
    $(this).addClass("hover");
	}, 
	  function () {
		$(this).removeClass("hover");
	});
	
	$("#nav-list li").hover(function() {
    $(this).addClass("hover");
	}, 
	  function () {
		$(this).removeClass("hover");
	});     */
	
	//$("#nav-list li ul").eq(1).addClass("wide");
	
});

