
// JavaScript Document

$(document).ready(function() {
       $("a.mcModule").wrapInner("");
       $("a.mcModule span").css({"opacity" : 0});

       $("a.mcModule").hover(function(){
               $(this).children("span").animate({"opacity" : 1}, 400);
       }, function(){
               $(this).children("span").animate({"opacity" : 0}, 400);
       });
});



/* $(document).ready(function() {
						   
	$("li.page-item-14 a").hover(function(){
	$("li.page-item-14 a").animate("slow", function () {
	  $(this).css("background-color", "#0066ff");
	  $(this).fadeIn("slow");
	});
	});

});

$(document).ready(function() {
	$("li.page-item-17 a").hover(function(){
		$('li.page-item-17 a').animate({'background-color' : '#0066ff'});
		}, function(){
				   $('li.page-item-17 a').animate({'background-color' : '#E44A4A'});
		 });
}); */
