function service(section)
{
	var arrSrv = new Array(6);
	arrSrv[0] = "planning";
	arrSrv[1] = "coordination";
	arrSrv[2] = "mc";
	arrSrv[3] = "dj";
	arrSrv[4] = "vo";
	arrSrv[5] = "ba";
	for(var i = 0; i < arrSrv.length; i++)
	{
		document.getElementById(arrSrv[i]).style.display = "none";
	}
	document.getElementById(arrSrv[section]).style.display = "block";
}
function photos(section)
{
	var arrPh = new Array(4)
	arrPh[0] = "setups";
	arrPh[1] = "ontheair";
	arrPh[2] = "hereandthere";
	arrPh[3] = "gottheme";
	for(var i = 0; i < arrPh.length; i++)
	{
		document.getElementById(arrPh[i]).style.display = "none";
	}
	document.getElementById(arrPh[section]).style.display = "block";
}
function demo()
{
	var demoWin = window.open("demo.htm", "demo", "resizable=no, scrollbars=no, toolbar=no, location=no, directories=no, status=no, menubar=no, copyhistory=no, top=0, left=0, width=206, height=200");
}
window.onload = function()
{
	var screenW = screen.width;
	switch(screenW)
	{
		case 1600: //1600x1200
			var img = "images/wed1600.jpg";
			break;
		case 1280: //1280x960
			var img = "images/wed1280.jpg";
			break;
		case 1024: //1024x768
			var img = "images/wed1024.jpg";
			break;
		case 800: // 800x600
			var img = "images/wed800.jpg";
			break;
		default:
			var img = "images/wed1600.jpg";
			break;
	}
	document.body.style.background = "url(\"" + img + "\") #212a27 left top no-repeat fixed";
};