// JavaScript Document
$(document).ready(function (){
	$("UL.topnav > LI").each(function (){
		$(this).click(function (){highLight(this)});
	})
	$("UL.leftNav > LI").each(function (){
		$(this).click(function (){highLight(this)});
	})
});
function highLight(obj){
	unHighLight();
	id = "#" + $(obj).find('a').attr('id');
	$("UL.topnav").find(id).parent().addClass("active");
	$("UL.leftNav").find(id).parent().addClass("active");
}
function unHighLight(){
	$("UL.topnav > LI.active").eq(0).removeClass("active");
	$("UL.leftNav > LI.active").eq(0).removeClass("active");
}