// js/help.js

var help = {
	status: 0,
	show: function(){
		if ( !this.status )
		{
			$("#generic_bg").bind('click', function(){help.hide();}).fadeIn("slow");
			$("#popup_help").fadeIn("slow");
			this.status = 1;
		}
	},
	hide: function(){
		if ( this.status )
		{
			$("#generic_bg").unbind('click').fadeOut("slow");
			$("#popup_help").fadeOut("slow");
			this.status = 0;
		}
	}
};

function swap_help_img(which)
{
	var img_src = 'img/help_button_' + which + '.png';
	$('#imgHelpButton').attr('src', img_src);
}

// end of file
