var hide = false;
$(function() {
	$('#service-hover').hover(
		function() {
			if (hide) clearTimeout(hide);
			$('#dropdown').css('left', $(this).position().left-18);
			$('#dropdown').show();
		},
		function(){
			hide = setTimeout(function() {$('#dropdown').hide();}, 250);
		}
	);
	$('#dropdown').hover(
		function() {
			if (hide) clearTimeout(hide);
		},
		function(){
			hide = setTimeout(function() {$('#dropdown').hide();$('div[id=dropdown-2]').hide();}, 250);
		}
	);
	
	$('a[subhover]').hover(
		function() {
			if (hide) clearTimeout(hide);
			$('div[id=dropdown-2]').hide();
			section = $(this).attr('subhover');
			sectionTop = $(this).position().top-5;
			$('div[id=dropdown-2]').each(function(){
				if($(this).attr('name') == section) {
					$(this).css('left', $('div[id=dropdown]').offset().left+170);
					$(this).css('top', sectionTop);
					$(this).show();
				}
			});
		},
		function(){
			hide = setTimeout(function() {$(this).hide();}, 250);
		}
	);
	$('div[id=dropdown-2]').hover(
		function() {
			if (hide) clearTimeout(hide);
		},
		function(){
			hide = setTimeout(function() {
				$('#dropdown').hide();
				$('div[id=dropdown-2]').hide();
			}, 250);
		}
	);
	
	
});
