// JavaScript Document

function init_menu(){
	var getVars = new Array();
	var locvartemp = ( window.location.href.indexOf( "?" ) + 1 ) ? window.location.href.substr( window.location.href.indexOf( "?" ) + 1 ) : "";
	locvartemp = locvartemp.split( "&" );
	for( var x = 0; x < locvartemp.length; x++ ) {
		var lvTempVar = locvartemp[x].split( "=" );
		getVars[ unescape( lvTempVar[0] ) ] = unescape( lvTempVar[1] );
		var menu_item = lvTempVar[1];
	}
	document.getElementById("bullet_img_"+menu_item).style.visibility = 'visible';
}

function open_picture(pic,pic_width,pic_height){
	foto = window.open("picture.html?pic=gallery/big/"+pic, (Math.round(Math.random()*89789)), "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width="+pic_width+",height="+pic_height);	
	foto.focus();
}
