// JavaScript Document

//<![CDATA[

$J(document).ready(function () {
 
	//Append a div with hover class to all the LI
	$J('#navMenujQuery li').append('<div class="hoverJquery"><\/div>');
 
 
	$J('#navMenujQuery li').hoverJquery(
		
		//Mouseover, fadeIn the hidden hover class	
		function() {
			
			$J(this).children('div').fadeIn('1000');	
		
		}, 
	
		//Mouseout, fadeOut the hover class
		function() {
		
			$J(this).children('div').fadeOut('1000');	
		
	}).click (function () {
	
		//Add selected class if user clicked on it
		$J(this).addClass('selected');
		
	});
 
});

//]]>