// the script for main navigation
$(document).ready(function() {

    $("ul#mainNav > li").hover(
            function() {
                var target = $(this).children('ul.subNav');
                var offset = $(this).offset();
                target.css('left', offset.left);
                target.css('top', offset.top - 2);
                target.fadeIn('fast');
            },
            function() {
                $('ul.subNav').fadeOut('fast');
            });
    // init hompage infoBox navigation
    $("#infoBoxNav").fadeIn('slow');
});

// opens a tab on the homepage infoPanel
function openTab(id){

	// hide open tabs
	$("div.tab").hide();
    $("#hpInfoPanel th").removeClass("selected");
    // open selected tab
	$("#" + id + "Tab").fadeIn('slow');
    $("#"+ id).addClass("selected");
}


/**
function selectInfoBox(id){

    // hide all the other boxes
    $("#infoBox > div.infoBoxContent").hide();
    $("#infoBoxNav > span").removeClass("selected");
    // show selected content
    $("#"+ id + "Nav").addClass("selected");
    $("#"+ id).fadeIn('slow');
}  */