var searchString = "Search iMusic Festival";
window.onload = windowInit;

function windowInit () {
	document.getElementById ("q").onfocus = focusSearch;
	document.getElementById ("q").onblur = blurSearch;
	
	if (/(Safari)/.test (navigator.appVersion))
		document.getElementById ("q").setAttribute ("type", "search");
}

function focusSearch () {
	if (document.getElementById ("q").value == searchString)
		document.getElementById ("q").value = "";
	else
		document.getElementById ("q").select();
}

function blurSearch () {
	if (document.getElementById ("q").value == "")
		document.getElementById ("q").value = searchString;
}
