$(document).ready(function() {
	$("#open_login").click().toggle(function() {
		$('#login_repeat').animate({
			height: 'show'
		}, 'slow');
	}, function() {
		$('#login_repeat').animate({
			height: 'hide'
		}, 'slow');
	});
	$('#login_repeat').hide();
	
	$('#navigation2').css('top','317px');
	$('#navigation').mouseover(function(){
		$('#navigation2').css('top','230px');	
		//$('#navigation2').animate({top:'230px'}, 1000, 'linear', '');
	}).mouseout(function(){
		$('#navigation2').css('top','317px');
		//$('#navigation2').animate({top:'317px'}, 1000, 'linear', '');
	});
});
