/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function menu_default(){
	jQuery('#navMenu li').hover(

		//Mouseover, fadeIn the hidden hover class
		function() {

			jQuery(this).children('div').fadeIn('1000');

		},

		//Mouseout, fadeOut the hover class
		function() {

			jQuery(this).children('div').fadeOut('1000');

	}).click (function () {

		//Add selected class if user clicked on it
		jQuery(this).addClass('selected');

	});
	jQuery('#navMenu li').append('<div class="hover"><\/div>');
}

