/* Instantiate jQuery */
$(function(){
	var cssDefault = {
		'background' : 'url(assets/images/welcome.png) top right no-repeat white',
		'height' : '475px',
		'border' : '1px solid #dfdfdf',
		'margin-top' : '0',
		'margin-left' : '0',
		'margin-bottom' : '20px',
		'position' : 'relative'
	};
	var cssHover = {
		'border' : '10px solid #505050',
		'margin-top' : '-9px',
		'margin-left' : '-9px',
		'margin-bottom' : '11px',
		'cursor': 'pointer'
	};
	var cssLink = {
		'position' : 'absolute',
		'bottom' : '12px',
		'left' : '10px',
		'color' : '#505050',
		'text-decoration' : 'none',
		'font-size' : '40px',
		'font-family' : '"Times New Roman", times, serif'
	};
	landing_photo = $("#landing_photo");
	landing_photo.empty().css(cssDefault).hover(function(){
		$(this).css(cssHover);
		$(this).append("<p><a href='home'>Enter</a></p>");
			$("#landing_photo>p>a").css(cssLink);
	},function(){
		$(this).css(cssDefault);
		$(this).empty();
	}).click(function(){
		window.location.href = "home";
	});
});
