var activeMenu = '';
	var menuTimer = '';

	$(document).ready(function() {
		$('a.sn_link').hover(
			function() {
				window.clearTimeout(menuTimer);
				targetId = $(this).parent().attr('id').replace('n_','');
				activeMenu = targetId;
				$('.drop').each(function(i) {
					if ($(this).attr('id') == 'drop_'+targetId) {$(this).fadeIn('fast');}
					else {$(this).hide();}
				});
			},
			function() {
				menuTimer = window.setTimeout("$('#drop_'+activeMenu).hide();",300);
			}
		);
		$('.drop').hover(
			function() {window.clearTimeout(menuTimer);},
			function() {
				menuTimer = window.setTimeout("$('#drop_'+activeMenu).hide();",300);
			}
		);
	});
