$(document).ready(function() {
	$('.menu').hover(function() {
		$(this).addClass("menuOver");
	}, function() {
		var id = $(this).attr("li");
		$(this).removeClass("menuOver");
	});
	
	$("a.galerija").fancybox({
		'zoomSpeedIn':		0, 
		'zoomSpeedOut':		0, 
		'zoomSpeedChange':	0,
		'overlayShow':		true,
		'centerOnScroll':	false,
		'imageScale': true
	});

});