﻿function markMenuItem(menuitem) 
{   
    var lookfor = "a:contains(" + menuitem + ")";
    $(lookfor).css("color", "#e64221");
}

$(document).ready(function () 
{
    menuSelect();  //calls this function to highlight the selected menu on DOM load
});


var popwnd = '';

function poppage(val) 
{
    var url;
    url = "Popup.aspx?img=" + val;
    if (!popwnd.closed && popwnd.location) 
    {
        popwnd.location.href = url;
    }
    else 
    {
        popwnd = window.open(url, 'popwnd', 'toolbar=no,status=yes,resizable=no,scrollbars=yes,width=625,height=395,top=50,left=50');
        if (!popwnd.opener) popwnd.opener = self;
    }
    if (window.focus) 
    {
        popwnd.focus();
    }
}



function jsfnHighlightSideItem(item1) 
{
    var obj1;
    obj1=document.getElementById(item1);    
    obj1.className = "bgsideblack";
}

function jsfnDimSideItem(item1) 
{   
    var obj1;
    obj1 = document.getElementById(item1);    
    obj1.className = "bgsidewhite";
}
