$(function() {

	var close = true;
	var close2 = true;
	
	$('.menu-item').hover(function() {
	
		var cap = $(this).attr('cap');
		var pos = $(this).offset();
		$(this).css('background-color','#D4145A');
		$('.dropdown').each(function() { if($(this).attr('cap') == cap) { $(this).css('top',(pos.top+40)); $(this).css('left','0'); $(this).show(); } });
		close2 = false;	
	
	},function() {
	
		close2 = true;
		if(close)
		{
			$('.dropdown').hide();
			$(this).css('background-color','transparent');
		}
	
	});
	
	$('.dropdown').hover(function() {
	
		close = false;
	
	},function() { var obj = this; close = true; $('body').oneTime(100,function() { if(close2) { $(obj).hide(); $(obj).parent().css('background-color','transparent'); } }); });
	

	
	

/*****************************************/	

	function init()
	{
	
		$('.dropdown').hide();
		$(this).css('background-color','');
	
	}
	
	init();

});
