function HideShow(hide,show) {

document.getElementById(hide).style.display = "none";
document.getElementById(show).style.display = "block";
// $("#" + hide).fadeOut(250)
// $("#" + show).fadeIn(250);

}


$(document).ready(function(){

   $("#title").fadeIn(750);
   $("#right").fadeIn(1500);

$('#nav-wrapper').hover(function()
{
/* something to do on mouseenter */
$('#current-nav').fadeOut(250, showMaster);

},
function()
{
/* something to do on mouseleave */
$('#master-nav').fadeOut(1, showCurrent);

});

function showMaster(eventObject) {
  $('#master-nav').fadeIn(250);
}

function showCurrent(eventObject) {
  $('#current-nav').fadeIn(250);
}


});

