﻿jQuery(document).ready(function () {

	jQuery("#mNav dd").hover(function () {
		jQuery(this).addClass("over");
	}, function () {
		jQuery(this).removeClass("over");
	});

	jQuery("#tNav dd").css("opacity", "0").hover(function () {
		jQuery(this).animate({ opacity: "1" }, { duration: 250 });
	}, function () {
		jQuery(this).animate({ opacity: "0" }, { duration: 400 });
	});

	jQuery('#mNav ul li a').hover(function () {
		jQuery(this).animate({ marginLeft: "4" }, { duration: 200 });
	}, function () {
		jQuery(this).animate({ marginLeft: "0" }, { duration: 200 });
	});

});
