//MENU ROLLOVER
if (document.images) {
nav1on   = new Image(); nav1on.src   = "_images/menu_homeon.gif";
nav1off  = new Image(); nav1off.src  = "_images/menu_home.gif";
nav2on   = new Image(); nav2on.src   = "_images/menu_artistson.gif";
nav2off  = new Image(); nav2off.src  = "_images/menu_artists.gif";
nav3on   = new Image(); nav3on.src   = "_images/menu_newson.gif";
nav3off  = new Image(); nav3off.src  = "_images/menu_news.gif";
nav4on   = new Image(); nav4on.src   = "_images/menu_abouton.gif";
nav4off  = new Image(); nav4off.src  = "_images/menu_about.gif";
nav5on   = new Image(); nav5on.src   = "_images/menu_contacton.gif";
nav5off  = new Image(); nav5off.src  = "_images/menu_contact.gif";
}

function rollOn(img){
    if (document.images) {
        document[img].src=eval(img + "on.src");
    }
}

function rollOff(img){
    if (document.images) {
		document[img].src=eval(img + "off.src");
	}
}


//CLEAR FIELDfunction clearIt(field) {
if (field.value == "Search Artists" || field.value =="Email Address") {field.value="";
}}


// CHECK REGISTRATION
function SignupCheck(form) {
valcheck = form.email;hasDot = valcheck.value.indexOf(".");hasAt = valcheck.value.indexOf("@");if (hasDot == -1 || hasAt == -1) {	alert("Please enter your Email Address.");	valcheck.focus();	return false;}//First Name Checkvalcheck = document.getElementById("CustomFields_1_33");if (valcheck.value == "") {	alert("Please enter your First Name");	valcheck.focus();	return false;}//Last Name Check			valcheck = document.getElementById("CustomFields_2_33");if (valcheck.value == "") {	alert("Please enter your Last Name");	valcheck.focus();	return false;} 

//City Check			valcheck = document.getElementById("CustomFields_11_33");if (valcheck.value == "") {	alert("Please enter your City");	valcheck.focus();	return false;} //State Check			valcheck = document.getElementById("CustomFields_13_33");if(valcheck.selectedIndex == -1 || valcheck.value == "") {	alert("Please enter your State");	valcheck.focus();	return false;}//Zip Check	valcheck = document.getElementById("CustomFields_3_33");if (valcheck.value == "") {	alert("Please enter your Zip Code");	valcheck.focus();	return false;}
 else {	return true;}}

// DROP DOWN SORT FUNCTION
function dropsort(thename) { 
var ind = thename.selectedIndex; 
var url = thename.options[ind].value;
window.location.href = url;
}
