
jQuery.noConflict();

function jquerymenusetup () {
	
	jQuery ('.jquerymenu li').hover (function () {

		/*currentItem = jQuery ('ul', this);
		this.parent ().stop ();
		this.parent ().show ();*/
		
		/*
		jQuery ('ul:first', this).show ();
		jQuery ('ul:first', this).fadeIn ();
		*/		
		jQuery ('ul:first', this).show(); 					

	}, function () {
	
		jQuery ('ul', this).hide();
		
		/* jQuery ('ul', this).fadeIn ( 'slow' ); */		
		/* jQuery ('ul', this).fadeOut ( 'slow' ); */
		/* jQuery ('ul', this).show ( 'slow' );	*/		

	}).mousedown (function () {

	   location.href = jQuery ('a', this).attr('href');	
	
/*
		var submenu = jQuery ('ul', this);

		if (submenu.length < 1)
			location.href = jQuery ('a', this).attr('href');
		else
			submenu.toggle ();
*/
	});

}

jQuery (document).ready (function () {

	jquerymenusetup ();
	
});


