

	var to;
	$('a.openup').mouseover(function() {
		clearTimeout(to);
		$('ul.opened').hide();
		var id = $(this).attr('id');
		$('#' + id + '-drop').show();
	}).mouseout(function() {
		var id = $(this).attr('id');
		to = setTimeout(function() {
			closeme($('#' + id + '-drop'));
		}, 2000);
	});

	$('ul.opened').mouseover(function() {
		clearTimeout(to);
	}).mouseout(function() {
		var id = $(this).attr('id');
		to = setTimeout(function() {
			closeme($('#' + id));
		}, 2000);
	});

	function closeme(o) {
		o.hide();
	}

$(document).ready(function($) {
		//Menu animation
		$('#nav-registration-drop ul').css({display: "none"}); //Fix Opera

		$('#nav-registration-drop li').hover(function() {
		var cdOffset = $(this).find('a').offset();
		$(this).find('a').stop().animate({'width' : "210"});
   		$(this).find('ul:first').css({visibility : "visible", display : "none", "position": "absolute", "left":$('#nav-registration-drop li').width() + "px", "top":"-1px"}).show(0);

  		}, function() {
    		$(this).find('ul:first').css({visibility : "hidden"}).hide(0);
   			$(this).find('a').stop().animate({'width' : "210"});
			});
		});

