﻿//function showResourceBox(show) {
//    document.getElementById('divResourceBox').style.display = show;
//}
function showResourceBox(direction) {
    
    var element = document.getElementById('divResourceBox');
    var elementleftpos = document.getElementById('divResourceBox').offsetHeight;
   
    if (direction == "up") {
    var newheight = 0;
    var tweenElementHeight = new Tween(element.style, 'height', Tween.regularEaseOut, elementleftpos, newheight, 2, 'px');
    tweenElementHeight.start();
    }
    else {
    var newheight = 130;
    var tweenElementHeight = new Tween(element.style, 'height', Tween.bounceEaseOut, elementleftpos, newheight, 1, 'px');
    tweenElementHeight.start();
    }

}
function menuhoverOver(id) {
//    document.getElementById(id).style.backgroundColor = "#ff0000";
}
function menuhoverOut(id) {
//    document.getElementById(id).style.backgroundColor = "transparent";
}

