/* ---------------------------------------------------- */
/* JQuery												*/
/* ---------------------------------------------------- */
$jQuery(document).ready(function() 
{
	/* Set the initial menu state */
	var menu_state = "up";
	
	/* Slide the menu up */
	$jQuery("#left_container_iframe").slideUp('slow', function() {
		$jQuery("#home_arrow").attr('src', 'images/icons/iframe_down_arrow.gif');
		$jQuery("#home_arrow").attr('title', 'Click to open the menu');
		$jQuery("#left_container_iframe").hide();
	});
	
	/* Slide the meu up/down and alter the image depending upon what the curretn state is */
	$jQuery("#home_arrow").click( function() {
	
		/* Work out the menu state */
		switch( menu_state )
		{
			case "up":
				$jQuery("#left_container_iframe").show();
				$jQuery("#left_container_iframe").slideDown('slow');
				$jQuery("#home_arrow").attr('src', 'images/icons/iframe_up_arrow.gif');
				$jQuery("#home_arrow").attr('title', 'Click to close the menu');
				menu_state = "down";
				break;
			
			case "down":
				$jQuery("#left_container_iframe").slideUp('slow', function() {
					$jQuery("#home_arrow").attr('src', 'images/icons/iframe_down_arrow.gif');
					$jQuery("#home_arrow").attr('title', 'Click to open the menu');
					$jQuery("#left_container_iframe").hide();
				});
				menu_state = "up";
				break;
		}
		return false;
	});
});