$(document).ready(function(){
   	//last-child for MSIE
   if ( $.browser.msie ) {
		$(".galerijaPost li:nth-child(4n), #footer li:last-child a").addClass('last');	
 	}
   //SubMenu
	$("#nav-bar ul li").hover(
	  function () {
		$(this).children("ul").show();
	  },
	  function () {
		$(this).children("ul").hide();
	  }
	);
	$("#nav-bar ul li").hover(
	  function () {
		$(this).addClass("hover");
	  },
	  function () {
		$(this).removeClass("hover");
	  }
	);
   //Fancybox
	$(".izdvajamo, .izdvajamoDesno").fancybox({
		'overlayShow'	: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});

});


