$(document).ready(function(){	
	
	//let's do this
	scroll_to_the_top();
	show_login_form();

	$("#login_form").validate();
});

/* FUNCTIONS */

$(function() {
	var zIndexNumber = 2000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});
});

function scroll_to_the_top() {
	$('p#back_to_top a').click(
	    function(){
    		$.scrollTo( '#header', 300 );
    		return false;
    	}
    );
}

function show_login_form() {
	$('#login').hide();
	
	$("#login_toggle").click(
		function () {
    		$("#login").slideToggle("fast");
			return false;
		}
	);
}