//Submenu links

	$(function() {
		// set opacity to nill on page load
		$(".submenu a").css("opacity",".6");
		// on mouse over
		$(".submenu a").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'fast');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: .6
			}, 'fast');
		});
	});


//Submenu links

	$(function() {
		// set opacity to nill on page load
		$(".cont_menu a").css("opacity",".5");
		// on mouse over
		$(".cont_menu a").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'fast');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: .5
			}, 'fast');
		});
	});

	$(function() {
		// set opacity to nill on page load
		$(".active").css("opacity","1");
		// on mouse over
		$(".active").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'fast');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 1
			}, 'fast');
		});
	});
