$(function () {  	
    $(".about-over").mouseover(function(){ $(this).parent().css('background', '#fbfbfb'); })
   .mouseout(function() {$(this).parent().css('background', 'none'); });
   
   $(".bio-over").mouseover(function(){ $(this).parent().css('background', '#fbfbfb'); })
   .mouseout(function() {$(this).parent().css('background', 'none'); });
   
   $(".soft-over").mouseover(function(){ $(this).parent().css('background', '#fbfbfb'); })
   .mouseout(function() {$(this).parent().css('background', 'none'); });
   
   $(".elec-over").mouseover(function(){ $(this).parent().css('background', '#fbfbfb'); })
   .mouseout(function() {$(this).parent().css('background', 'none'); });
});

function openPage(pageURL, aObj) 
{
    var frm, s;
    frm = document.getElementById("mainFrm");
    s = (pageURL == '' ? 'undercon' : pageURL) + '.htm' + (pageURL == '' ? '?page=' + aObj.innerHTML : '');
    frm.src = unescape(s);
}


