 jQuery.noConflict();
jQuery(document).ready(function () {

	//Append a div with hover class to all the LI
	jQuery('#navMenu li').append('<div class="hover"><\/div>');


	jQuery('#navMenu li').hover(
		
		//Mouseover, fadeIn the hidden hover class	
		function() {
			
jQuery(this).stop().children('div').fadeIn('500'); 		
		}, 
	
		//Mouseout, fadeOut the hover class
		function() {
		
		jQuery(this).stop().children('div').fadeOut('500'); 	
		
	}).click (function () {
	
		//Add selected class if user clicked on it

		jQuery(this).addClass('selected');
		
	});

});
