function mouseOverImg(id){
	document.getElementById(id).style["background"] = "#04acc2";
}
function mouseOutImg(id){
	document.getElementById(id).style["background"] = "#fff";
}

function mouseOverFind(id){
	document.getElementById(id).style["background"] = "#333";
}
function mouseOutFind(id,img){
	document.getElementById(id).style["background"] = "url("+img+") repeat-x left top";
}

function mouseOverJumpto(id){
	document.getElementById(id).style["background"] = "#333";
}
function mouseOutJumpto(id,img){
	document.getElementById(id).style["background"] = "url("+img+") repeat-x left top";
}

function mouseOverRedBtn(id,img){
	document.getElementById(id).style["background"] = "url("+img+") repeat-x left bottom;";
}
function mouseOutRedBtn(id,img){
	document.getElementById(id).style["background"] = "#9b1517 url("+img+") repeat-x left top";
}

function mouseOverLegend(id,img){
	document.getElementById(id).style["background"] = "#04ACC2 url("+img+") no-repeat scroll left center";
	document.getElementById(id).style["color"] = "#fff";
}
function mouseOutLegend(id,img){
	document.getElementById(id).style["background"] = "url("+img+") no-repeat left center";
	document.getElementById(id).style["color"] = "#04ACC2";
}

function mouseOverIndexImg(id){
	document.getElementById(id).style["background"] = "#333";
}
function mouseOutIndexImg(id){
	document.getElementById(id).style["background"] = "#fff";
}

function mouseOverProductlist(id){
	document.getElementById(id).style["background"] = "#ffffcc";
}
function mouseOutProductlist(id){
	document.getElementById(id).style["background"] = "#e3f4f7";
}