$(function(){
	//get body id
	var bodyid = $('body').attr('id');
	//find the nav element with the id of nav_<bodyid> and set it's class to "active"
	$('#nav_'+bodyid).addClass('active');
})	
