$(document).ready(function(){
	
	$(".noscript").hide();
	$(".script").css("visibility", "visible");

	$("[rel=gal]").colorbox({ 
		'maxWidth': "95%", 
		'maxHeight': "95%", 
		'photo': true, 
		'scalePhotos': true, 
		'scrolling' : false,
		'current': "Slika {current} od {total}"
	});

	$('#right a').tooltip({
		track: true, 
	    delay: 0, 
	    showURL: false, 
	    showBody: " - ", 
	    fade: 250 
	});
	
	$(".popup").click(function(e){
		e.preventDefault();
		var ref = $(this);
		window.open(ref.attr("href"), ref.attr("title"),'width=380,height=600,scrollbars=yes');
	})
	

})


