﻿
function changePicCol(image) {
    document.getElementById("imgGalleryLarge").src = image;
}



function showMe(vID, imgID, vHeight) {
    var obj = document.getElementById(vID);
    var btnPlusMinus = document.getElementById(imgID);
    divHeight = document.getElementById('test').style.height;
    var newHeight;
    // Remove the px from the value retrieved from above line of code
    heightNoPx = divHeight.split('p');
    currentHeight = parseInt(heightNoPx[0])

    if (obj.style.display != 'none') {
        obj.style.display = 'none';
        btnPlusMinus.src = "resources/images/node_full.jpg";
        newHeight = currentHeight - parseFloat(vHeight);
        document.getElementById('test').style.height = newHeight + 'px';

    }
    else {
        obj.style.display = '';
        btnPlusMinus.src = "resources/images/node_half.jpg";

        newHeight = currentHeight + parseFloat(vHeight);
        document.getElementById('test').style.height = newHeight + 'px';

    }
}


function selectedMenu(obj) {
    //obj.parentElement.style
    obj.style.color = "red";
}


//Used to open an external web site in a new window
function getWebPage() {
    // this will make a child page popup 
    window.open("http://get.adobe.com/reader", "");
}
          
function gotoFacebookSite()
{
  // this will make a child page popup 
    window.open( "http://www.facebook.com/pages/Santa-Barbara-CA/Omni-Fresco-Catering/94560357647?ref=nf","");
}
   
          
