// KScripte - http://www.kristijan-solutions.com/

$j(window).resize(function(){ // ----- KAD SE PROZOR POVECAVA/SMANJUJE IZVRSI OVO -----



});

$j(window).load(function(){ // ----- KAD SE STRANICA UCITA IZVRSI OVO -----


// prettyPhoto jQuery Lightbox settings and initialization

	if (typeof isRunningIE6OrBelow == "undefined") { // ako nije IE6 (Internet Explorer 6)
		
		$j("a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded'});
		
	}

});

function goPage(newURL) {
// This function is called from the pop-up menus to transfer to a different page. Ignore the value returned is a null string

   	if (newURL != "") {
// skip the menu dividers and reset the menu selection to default
   		if (newURL == "-" ) {
			resetMenu();
			
		} else {  
// send page to designated URL		 	
   			document.location.href = newURL;
   		}
   	}
}
