$(document).ready(function()
{
	$("#line_1").hide();
	$("#line_2").hide();
	$("#enter").hide();
	$("#enter .background").hide();

	$("#line_1").animate({opacity: 1.0}, 2000).fadeIn('slow');
	$("#line_2").animate({opacity: 1.0}, 4000).fadeIn('slow');
	$("#enter").animate({opacity: 1.0}, 5000).fadeIn('slow');

	$("#enter").hover(function ()
	{
		$(".background", this).fadeIn('fast');
	},

	function ()
	{
		$(".background", this).fadeOut('fast');
	}
    );
});
