﻿var img = new Image();
img.src = "resources/images/menuhighlight.jpg";
var highlightMenu = function(item, link){
    item.style.background = "transparent url(resources/images/menuhighlight.jpg) top left repeat-x";
    link.style.color = "#063E51";
}

var resetMenu = function(item, link){
    item.style.background = "";
    link.style.color = "white";
}