//preload images
imageObjArr = new Array();
images = new Array();
	
for( i in images ){
	imageObjArr[i] = new Image()
	imageObjArr[i].src = images[i] ;
}

// Open new pop-up window with url, width and height
function openWindow(url,width,height) {
var left = (window.screen.width - width) / 2;
var top = (window.screen.height - height) / 2;
var parameters = 'left=' + left + ',top=' + top + ',width=' + width + ',height=' + height + ',toolbar=0,menubar=0,location=0,status=0,scrollbars=0,resizable=0';
window.open(url,'login',parameters);
}

function togg_menu(id){

	$("#sub_"+id).attr("slide", "none");

	$(document).find("[@slide='down']").slideUp("fast").attr("slide", "up");

	$("#sub_"+id).attr("slide", "down");
	
	$("#sub_"+id).slideToggle() ;

}


function changeimage(path){
	if( window.location.pathname=="/" || window.location.pathname=="/index.php" ){
		i = document.getElementById('homesplash')
		i.src = path
	}
}

