//javascript

function main_menu_item_over(me) {
	me.bgColor = '#BBBABA';
}
			
function main_menu_item_out(me) {
	me.bgColor = '#CCCCCC';
}

function switch_pica(pica_id) {
	var picanaam = document.getElementById('pica').name;
	var thumbnaam = document.getElementById(pica_id).name;
	var picaalt = document.getElementById('pica').alt;
	var thumbalt = document.getElementById(pica_id).alt;
	
	document.getElementById('pica').alt = thumbalt;
	document.getElementById(pica_id).alt = picaalt;
	
	document.getElementById('pica').src = thumbnaam;
	document.getElementById(pica_id).src = "thumbs/"+picanaam;
		
	
	document.getElementById('pica').name = thumbnaam;
	document.getElementById(pica_id).name = picanaam;
}

function cls(getid, classpassed){
	document.getElementById(getid).className=classpassed;
}