/***************************/
// MENU
/***************************/

$(document).ready(function(){


jQuery('ul.mainLinks > li > a > span > img').hover(function() {

	// Stuff that happens when you hover on
	jQuery(this).stop().animate({
		   'opacity': 0
		   }, 300)

	},function() {

		   // Stuff that happens when you unhover
		   jQuery(this).stop().animate({
				   'opacity': 1
				   }, 300)
	})

});

