$(function() {
	
	//set active tab
	var page = $('meta[name=page]').attr("content");
	$("."+ page + " a").not(".naslovna a, .home a").addClass("active");
	
	//check if footer needs fixing to bottom of viewport
	var space = (window.innerHeight ? window.innerHeight : $(window).height()) - ($("body").height());
	//if(space > 0) 
	//{$("#cContent .wrapper").css({'height':(space)});}
	
	//set global colorBox contents
	$("a[rel='cbContact1']").colorbox({width:520, onComplete:function(){ setWatermark();}});
	$("a[rel='cbContact2']").colorbox({width:520, onComplete:function(){ setWatermark();}});	
	
});

window.onresize = function() {

	//set footer fixing on resize
	//$("#cContent .wrapper").css({'height':'auto'});
	//difference = (window.innerHeight ? window.innerHeight : $(window).height()) - ($("body").height());
	//if(difference > 0) 
	//{$("#cContent .wrapper").css({'height':(difference + 97)});}
	
};





