function DivToggle(id)
{
	$('#'+id).toggle("blind", {direction: "vertical"}, 1000);
	
}

$(document).ready(
	function()
	{ 
	// *******************************************************************************************************
		$('#leftMenu div').each( function()
			{
				var imgLeft;
				
				imgLeft = $(this).children().width() - 180;
				
				$(this).animate({ left: -1*imgLeft+'px'}, 500 );

				$(this).hover(
					function () {
						if ($(this).queue().length == 0)
							$(this).queue(
								function ()
								{
									$(this).animate({ left: '0px'}, 500 )
									$(this).dequeue();
								}
							);
					}, 
					function () {
						$(this).queue(
							function ()
							{
								$(this).dequeue();
								$(this).animate({ left: -1*imgLeft+'px'}, 500 )
							}
						);
					}
				);

			}
		);

	// *******************************************************************************************************
	}
);

