/* COPYRIGHT BABYSOFT */

// Declare Variables

var backgroundIcon = new Image();

var backgroundIconFocus = new Image();



var sideIcon = new Image();
var sideIconFocus = new Image();


// Preload Images

backgroundIcon.src = "http://www.furnicraft.com/images/menu_unclick.jpg";

backgroundIconFocus.src = "http://www.furnicraft.com/images/menu_clicked.jpg";

sideIcon.src = "http://www.furnicraft.com/images/sideMenu_unclick.jpg";
sideIconFocus.src = "http://www.furnicraft.com/images/sideMenu_clicked.jpg";


// when mouse focus on a top menu.

function menuFocus(name){
    
document.getElementById(name).background = backgroundIconFocus.src;
        

return;


}



// when mouse exit a top menu

function menuBlur(name){

    
document.getElementById(name).background = backgroundIcon.src;
    

return;

}

// when mouse focus on a side menu.

function sideMenuFocus(name){
    
document.getElementById(name).background = sideIconFocus.src;
        

return;


}



// when mouse exit a side menu

function sideMenuBlur(name){

    
document.getElementById(name).background = sideIcon.src;
    

return;

}
