$(document).ready(function(){
	$("#tops div").hide();
	$("#tops h2").click(function(e){
		if (e.target.style.backgroundImage){
			if (e.target.style.backgroundImage == "url(/adviser/images/gradbar.gif)")
				{
					e.target.style.backgroundImage = "url(/adviser/images/gradbar2.gif)";					
				}else
				{
					e.target.style.backgroundImage = "url(/adviser/images/gradbar.gif)";
				}
		}else{
			e.target.style.backgroundImage = "url(/adviser/images/gradbar2.gif)";
		}
		$(this).next().toggle();
		return false;
	});
	
});
