$(document).ready(function() {
	 
	// The 3 links at the bottom of the page
	$(".homeLinksContainer > ul > li:nth-child(2)").css("width","335px")
	$(".homeLinksContainer > ul > li:nth-child(3)").css("width","334px")
	
	
	$(".homeLinksContainer > ul > li:eq(0) img, #benefits").live("click", function() {
		
		currentscrollpos = 0
		
		$("<div class='blackout'></div>").hide().css("opacity",0.8).appendTo('body').delay(300).fadeIn();
		
		$("<div class='forgottenpassword'></div>").css({"width":"900px", "margin-left":"-450px"}).hide().appendTo('#loginform');
		
		$(".benefits").appendTo("div.forgottenpassword");
		
		$(".forgottenpassword").delay(1000).slideDown( function() {
			$("#selectBoxContainer").fadeIn();
		});
		
		$("html, body").animate({ scrollTop: 0 }, 500);
		
 	});
	
});
