// JavaScript Document

	$(document).ready(function(){
							   
		var oldTarg;				   
		$('h3').find('a').click(function (e) {
			e.preventDefault();	
			var myTarg = $(this).parent().parent().find('.help_panel');
			if (myTarg.css("display") == "none") {
				$(this).parent().parent().find('.help_panel').fadeIn(300);
			} else {
				$(this).parent().parent().find('.help_panel').fadeOut(100);
			}
			if($(this).hasClass('hot')){
				$(this).removeClass('hot');
				$(this).attr('title','');
			} else {
				$(this).addClass('hot');
				$(this).attr('title','click to close');
			}
		});
		$('.help_panel').hide();
		
		$('.help_panel').addClass('rounded-12');
	});
