$(document).ready(function(){
	
	$('.error_text').hide();
	
	if($('.error_text').html()){

		if(!$('#error_box_title').text()){
			$('#error_box_title').text("Error");
		}
		$('#error_box').html($('.error_text').html());
		$('#error_box').dialog({title: $('#error_box_title').text(),width: 500});
	}
	


	$('.help_title').click(function(){
		$(this).next('.help_body').slideToggle('fast');
	});

	$('.close_help').click(function(){
		$(this).parent('.help_body').slideToggle('fast');
	});	
});
