	$('document').ready(
		function()
		{
		$('#haitifocus').fadeIn("fast");
		    $('#haitialert').slideDown("slow");
		    	$('#haiticlose').click(
				function()
				{
					$('#haitialert').slideUp('slow');
					$('#haitifocus').fadeOut('fast');
				}
			    );
			$('#customform').hide();
			$('#customerror').hide();
			$('#haitifocus').click(
			function()
			{
			$('#haitifocus').fadeOut('fast');
			}
			);
			$('#custom_image').click(
				function()
				{
					$('#custom_image').fadeOut('slow', function() { $('#customform').fadeIn(); });
				}
			);
			
			$('#customerror').click(
				function()
				{
					$('#customerror').fadeOut('slow', function()
						{
							$('#customerror').fadeOut('slow', function() { $('#custom_image').fadeIn(); $('#customcategory').val('category'); });
						}
					);
				}
			);
			
			$('#customform').submit(
				function()
				{
					$.ajax(
						{
							url: 'app/custom_category/' + $('#customcategory').val(),
							cache: false,
							success: function (data)
								{
									if (data.indexOf('Category does not exist!') == -1)
									{
										$('#customform').fadeOut('slow', function()
											{
												var boxDiv = $(data).addClass("cbox").bind('mouseenter', function() { cbox_mouseenter(this); }).bind('mouseleave', function() { cbox_mouseleave(); });
												$('#johnny').append(boxDiv);
											}
										);
									}
									else
									{
										$('#customform').fadeOut('slow', function() { $('#customerror').fadeIn(); });
									}
									//$('#bodycontain').html(data).fadeIn();//slideDown();
								}
						}
					);
					return false;
				}
			);
		}
	);