function boxfocus(){
	if (document.getElementById('searchbox')){
		var def = "search";
		var thebox = document.getElementById('searchbox');
		if (thebox.value == def){thebox.value = "";}
	}
}

function boxblur(){
	if (document.getElementById('searchbox')){
		var def1 = "search";
		var thebox1 = document.getElementById('searchbox');
		if (thebox1.value == ""){thebox1.value = def1;}
	}
}

function hidesel(){
	if (document.getElementById('sortbydropdown')){
		var drop = document.getElementById('sortbydropdown');
		drop.className = "seloff";
	}
}

function showsel(){
	if (document.getElementById('sortbydropdown')){
		var drop = document.getElementById('sortbydropdown');
		drop.className = "selon";
	}
}

try{
	document.execCommand('BackgroundImageCache', false, true); 
}
catch(e) {}
