
		$(document).ready
		(
			function()
			{
				$("a.mail").click
				(
					function()
					{
						$("#ContactPlatform").animate({"height": "toggle", "opacity": "toggle"}, 300);
					}
				);
			}
		);



		$(document).ready
		(
			function()
			{
				$("#CloseCell").click
				(
					function()
					{
						$("#ContactPlatform").animate({"height": "hide", "opacity": "toggle"}, 300);
					}
				);
			}
		);


		$(document).ready
		(
			function()
			{
				$("a.home, a.mail, a.map").mouseover
				(
					function()
					{
						$(this).animate( { marginTop:"5px" }, 350);
					}
				);


						$("a.home, a.mail, a.map").mouseout
						(
						function()
						{
							$(this).animate( { marginTop:"0px" }, 350);
						}

						);

			}



		);





		$(document).ready
		(
			function()
			{
				$("ul.topnav li span").hover
				(
					function()
					{
						$(this).parent().find("ul.subnav").animate({"height": "toggle", "opacity": "toggle"}, 400);


						$(this).parent().hover
						(
							function()
							{

							},


							function()
							{
								$(this).parent().find("ul.subnav").animate({"height": "hide","opacity": "toggle"}, 350);
							}

						);
					}
				)
			}



		);




		$(document).ready
		(
			function()
			{
				$("div.MainMenuRight ul li a.CubeTitleSub").mouseover
				(
					function()
					{
						$(this).parent().find("i.SubMenu").animate({"height": "toggle", "opacity": "toggle"}, 400);

						$(this).parent().hover
						(
							function()
							{

							},


							function()
							{
								$(this).parent().find("i.SubMenu").animate({"height": "hide","opacity": "toggle"}, 350);
							}

						);
					}
				)
			}
		);








	$(document).ready
		(
			function()
			{
				$("a.logKey").click
				(
					function()
					{
//						$("div.DropDownCarcassKey").toggle('fast');
						$("div.DropDownCarcassKey").animate({"height": "toggle","opacity": "toggle"}, 350);
					}
				)

				$("a.logAdmin").click
				(
					function()
					{
						$("div.DropDownCarcassAdmin").animate({"height": "toggle","opacity": "toggle"}, 350);
					}
				)
			}
		);

