$(document).ready(function() {
				navigationPrimary();
				navigationPrimarySub();
				navigationPrimarySub2();
				navigationPrimarySub3();
				navigationPrimarySub4();
				navigationPrimarySub5();
				navigationPrimarySub6();
				navigationSecondary();
				navigationSecondarySub();
			});
			function navigationPrimary() {
				$('#firstmenu a')
				.css({ backgroundColor: '#FF7800', color: '#fff' })
				.mouseover(function() {
					$(this).stop().animate(
						{ backgroundColor: '#DCCDAC', color: '#006983' }
					, 150);
				})
				.mouseout(function() {
					$(this).stop().animate(
						{ backgroundColor: '#FF7800', color: '#fff' }
					, 400);
				});
			}
			function navigationPrimarySub() {
				$('#firstmenu ul ul a')
				.css({ backgroundColor: '#FFF', color: '#006983' })
				.mouseover(function() {
					$(this).stop().animate(
						{ backgroundColor: '#DCCDAC', color: '#006983' }
					, 150);
				})
				.mouseout(function() {
					$(this).stop().animate(
						{ backgroundColor: '#FFF', color: '#006983' }
					, 400);
				});
			}
			function navigationPrimarySub2() {
				$('#firstmenu ul ul .act a')
				.css({ backgroundColor: '#FF7800', color: '#fff' })
				.mouseover(function() {
					$(this).stop().animate(
						{ backgroundColor: '#DCCDAC', color: '#006983' }
					, 150);
				})
				.mouseout(function() {
					$(this).stop().animate(
						{ backgroundColor: '#FF7800', color: '#fff' }
					, 400);
				});
			}
			function navigationPrimarySub3() {
				$('#firstmenu ul ul ul a')
				.css({ backgroundColor: '#FFF', color: '#006983' })
				.mouseover(function() {
					$(this).stop().animate(
						{ backgroundColor: '#DCCDAC', color: '#006983' }
					, 150);
				})
				.mouseout(function() {
					$(this).stop().animate(
						{ backgroundColor: '#FFF', color: '#006983' }
					, 400);
				});
			}
			function navigationPrimarySub4() {
				$('#firstmenu ul ul ul .act a')
				.css({ backgroundColor: '#FF7800', color: '#fff' })
				.mouseover(function() {
					$(this).stop().animate(
						{ backgroundColor: '#DCCDAC', color: '#006983' }
					, 150);
				})
				.mouseout(function() {
					$(this).stop().animate(
						{ backgroundColor: '#FF7800', color: '#fff' }
					, 400);
				});
			}
			
			function navigationPrimarySub5() {
				$('#firstmenu ul ul ul ul a')
				.css({ backgroundColor: '#FFF', color: '#006983' })
				.mouseover(function() {
					$(this).stop().animate(
						{ backgroundColor: '#DCCDAC', color: '#006983' }
					, 150);
				})
				.mouseout(function() {
					$(this).stop().animate(
						{ backgroundColor: '#FFF', color: '#006983' }
					, 400);
				});
			}
			function navigationPrimarySub6() {
				$('#firstmenu ul ul ul ul .act a')
				.css({ backgroundColor: '#FF7800', color: '#fff' })
				.mouseover(function() {
					$(this).stop().animate(
						{ backgroundColor: '#DCCDAC', color: '#006983' }
					, 150);
				})
				.mouseout(function() {
					$(this).stop().animate(
						{ backgroundColor: '#FF7800', color: '#fff' }
					, 400);
				});
			}
			function navigationSecondary() {
				$('#secondmenu a')
				.css({ backgroundColor: '#DCCDAC', color: '#006983' })
				.mouseover(function() {
					$(this).stop().animate(
						{ backgroundColor: '#FF7800', color: '#fff' }
					, 150);
				})
				.mouseout(function() {
					$(this).stop().animate(
						{ backgroundColor: '#DCCDAC', color: '#006983' }
					, 400);
				});
			}
			function navigationSecondarySub() {
				$('#secondmenu ul ul a')
				.css({ backgroundColor: '#FFF', color: '#006983' })
				.mouseover(function() {
					$(this).stop().animate(
						{ backgroundColor: '#FF7800C', color: '#fff' }
					, 150);
				})
				.mouseout(function() {
					$(this).stop().animate(
						{ backgroundColor: '#FFF', color: '#006983' }
					, 400);
				});
			}
