// JavaScript Document
function mover(it){	
document.getElementById(it).className="menu_ch";
}

function mout(it,b){

if(b==1)
document.getElementById(it).className="menu_ch";
else
document.getElementById(it).className="menu";
}
function href(pagelink){
location.href=pagelink;
}

function bigPhoto(photo,theme,desc){

var dwin=window.open('','newWin','scrollbars=no,status=no,width=500,height=380');	
dwin.document.open();
	dwin.document.write("<HEAD><TITLE>"+theme+"</TITLE><link href='style.css' rel='stylesheet' /></HEAD><body>")
	dwin.document.write("<div class='bigphoto'><img src='images/photo/"+photo+"' alt='' class='bigfoto' /></div></body>");
dwin.document.close();	

}﻿