// Insight out 2009

jQuery(document).ready(function($) {
	
	var body_id = $("body").attr("class");
	if(body_id != null)
	{
		var current_link = $("div#nav").find("a#" + body_id);
		current_link.children().attr("src","img/b-" + body_id + "-over.gif");
	}
	
	$("div#nav a").mouseover(function() {
		var id = $(this).attr("id");
		if(body_id != id)
		{
			$(this).children().attr("src","img/b-" + id + "-over.gif");
		}
	});
	
	$("div#nav a").mouseout(function() {
		var id = $(this).attr("id");
		if(body_id != id)
		{
			$(this).children().attr("src","img/b-" + id + ".gif");
		}
	});

});