// JavaScript Document
$(document).ready(function(){
	$('#mainMenu li').hover(function() {
		$(this).find('img, ul').stop(true, true).fadeIn(300);
	},function() {
		$(this).find('ul, img').stop(true, true).fadeOut(300);
	});
});
