//
// Music site in a box Javascript function library.
//
// Developed by Ed Gough.
//
// Sport Monkey Design http://www.sport-monkey.com
//
// Webthinking http://www.webthinking.co.uk
//

var toID;

function tdchangebg(the_td) {
	clearTimeout(toID);
	tdresetbg();
	if(the_td=="1"){document.getElementById("info").innerHTML = '<b>Sport Monkey Design</b> splash page';}
	if(the_td=="2"){document.getElementById("info").innerHTML = 'see examples of websites we have created';}
	if(the_td=="3"){document.getElementById("info").innerHTML = 'get samples of the stock and bespoke photography we offer';}
	if(the_td=="4"){document.getElementById("info").innerHTML = 'find out about other projects, inc. Mac OS X Widgets';}
	if(the_td=="5"){document.getElementById("info").innerHTML = 'for general information about <b>Sport Monkey Design</b>';}
	if(the_td=="6"){document.getElementById("info").innerHTML = 'the <b>Sport Monkey Design</b> blog';}
	document.getElementById("b_" + the_td).style.background = '#79cff0';
	document.getElementById("a_" + the_td).style.color = '#fff';
}


function tdclearbg() {
	toID = setTimeout('tdresetbg();', 1500);
}


function tdresetbg() {
	document.getElementById("info").innerHTML = '';
	document.getElementById("b_1").style.background = 'none';
	document.getElementById("a_1").style.color = '#003640';
	document.getElementById("b_2").style.background = 'none';
	document.getElementById("a_2").style.color = '#003640';
	document.getElementById("b_3").style.background = 'none';
	document.getElementById("a_3").style.color = '#003640';
	document.getElementById("b_4").style.background = 'none';
	document.getElementById("a_4").style.color = '#003640';
	document.getElementById("b_5").style.background = 'none';
	document.getElementById("a_5").style.color = '#003640';
	document.getElementById("b_6").style.background = 'none';
	document.getElementById("a_6").style.color = '#003640';
}


function clickuser(userbox) {
	if(userbox.value=="username"){userbox.value=""};
}


function bluruser(userbox) {
	if(userbox.value==""){userbox.value="username"};
}


function clickpass(passbox) {
	if(passbox.value=="********"){passbox.value=""};
}


function blurpass(passbox) {
	if(passbox.value==""){passbox.value="********"};
}


function setWidget(theWidget) {
	switch(theWidget){
		case "Nin":
		document.getElementById('lnkWidget').href = 'javascript:var foo = window.open("http://www.sport-monkey.com/widgets/Nintendo.zip")';
		document.getElementById('imgWidget').src = 'resources/images/widgets/wdgtNin.png';
		break;
		case "THS":
		document.getElementById('lnkWidget').href = 'javascript:var foo = window.open("http://www.sport-monkey.com/widgets/Spurs.zip")';
		document.getElementById('imgWidget').src = 'resources/images/widgets/wdgtTHS.png';
		break;
	}
}