$(document).ready(function(){

	$('#slogan .down_link').click(function() {
		$.scrollTo($('#main_content'), 800);
	});
	
	$('a#enter').click(function(){
		if('0px' == $('#login #form').css('margin-top')) {
			$offset = '-=46';
		}
		else {
			$offset = '+=46';
		}
		$('#login #form').animate(
		  {'margin-top': $offset},
		  500
		);
		$('#login_form').animate(
                  {height: ['toggle', 'swing']},
		  500
		);
		
	});
	
	$('#banner_home a.see_here').click(function(){
		$('#banner_home div.banner').animate(
		  {height: ['toggle', 'swing'] },
                  500
		);
	});
    
    $('#login input').defaultValue();
});


