// JavaScript Document

function toggleBackground(target) {
	if (target.style.background.lastIndexOf("hover") < 0)
		target.style.background = "url(/images/submenuContent-bg-hover.gif) repeat-x";
	else 
	    target.style.background = "url(/images/submenuContent-bg.gif) repeat-x";
}

function toggleStartImg(target, pageId) {
	if (target.style.background.lastIndexOf("hover") < 0) {
		target.style.background = "url(/images/start-bg-right-v-hover.gif) repeat-x";
		document.getElementById("startImages").style.background = "url(/cms/upload/menu/"+pageId+"_style.jpg) no-repeat";
	} else { 
	    target.style.background = "url(/images/start-bg-right-v.gif) repeat-x";
	}
}

function insertMail(acc, svr, dom) {
	document.write('<a href="mailto:'+acc+'@'+svr+'.'+dom+'">'+acc+'@'+svr+'.'+dom+'</a>');
}