

	//simple ajax fetcher
	
	var menudelay;
	
	$(document).ready(function(){

		$('.hover').mouseover(function(){
			clearTimeout(menudelay);
			var item = $(this).next('.hoveritem');
			var height = $(this).height();
			$(item).show().css('margin-top','-'+height+'px');
		}).mouseout(function(){
			menudelay = setTimeout(function(){
				$('.hoveritem:visible').hide();
			},500);
		});
		
		$('.hoveritem').mouseover(function(){
			clearTimeout(menudelay);
		}).mouseout(function(){
			menudelay = setTimeout(function(){
				$('.hoveritem:visible').hide();
			},500);
		}).hide();

	});
	