$(document).ready(function() {	

$('#nav a').mouseover(function() {
	
	$('#nav a').each(function(index, a) {
            //$(a).removeClass('selected');
    });
		
    $(this).addClass('selected');	
});

$('#nav a').mouseout(function() {
	
	$('#nav a').each(function(index, a) {
            $(a).removeClass('selected');
    });
		
	var thisPage = $('body').attr('name');	
	initNav(thisPage);
	
});

 	 
});


function initNav()
{
	var thisPage = $('body').attr('name');		
	$('#nav a#' + thisPage).addClass('selected');	
}

