// mouseOvers.js

/***************
Functions for the front_theme_block images
**********************/

/*image preloading*/
/* Moved this functionality to sub_map_mouseovers.js */



function mouseOverb1() {
    document.getElementById("b1").src="/map_project/images/crm-hover.jpg"
}
function mouseOutb1() {
    document.getElementById("b1").src="/map_project/images/crm.jpg"
}

function mouseOverb2() {
    document.getElementById("b2").src="/map_project/images/shumate-hover.jpg"
}
function mouseOutb2() {
    document.getElementById("b2").src="/map_project/images/shumate.jpg"
}

function mouseOverb3() {
    document.getElementById("b3").src="/map_project/images/moth-hover.jpg"
}
function mouseOutb3() {
    document.getElementById("b3").src="/map_project/images/moth.jpg"
}

function mouseOverb4() {
    document.getElementById("b4").src="/map_project/images/prenter_comm-hover.jpg"
}
function mouseOutb4() {
    document.getElementById("b4").src="/map_project/images/prenter_comm.jpg"
}

function mouseOverb5() {
    document.getElementById("b5").src="/map_project/images/mtr4-hover.jpg"
}
function mouseOutb5() {
    document.getElementById("b5").src="/map_project/images/mtr4.jpg"
}

function mouseOverb6() {
    document.getElementById("b6").src="/map_project/images/WindTurbine_WebSmall-hover.jpg"
}
function mouseOutb6() {
    document.getElementById("b6").src="/map_project/images/WindTurbine_WebSmall.jpg"
}


/*Functions for collage mouse-overs*/

function writeText(txt)
{
    document.getElementById("desc").innerHTML=txt;
}




/* Menus */

function showmenu(elmnt)
{
    document.getElementById(elmnt).style.visibility="visible"
}
function hidemenu(elmnt)
{
    document.getElementById(elmnt).style.visibility="hidden"
}
function showsearch(elmnt) {
    document.getElementById(elmnt).style.visibility="visible"
}
function hidesearch(elmnt) {
    document.getElementById(elmnt).style.visibility="hidden"
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
    eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
    if (restore) selObj.selectedIndex=0;
} 



/* Maps Teaser */

// $(function(){
//   $('#map_teaser_wrapper').hover(over, out);
// });
// 
// function over(event)
// {
//   $('img.map_teaser_image').attr("src", "/map_project/images/maps_thumb400.png");
// }
// 
// function out(event)
// {
//   $('img.map_teaser_image').attr("src", "/map_project/images/maps_thumb400-hover.png");
// }