$(document).ready(function() {
	var homeimage = $('#homephoto');
	var entrancephoto = $('p#entrancephoto');
	entrancephoto.hide();
	homeimage.css('cursor', 'pointer');
	homeimage.click(function(){
		$('p#entrancephoto').fadeIn(1500);
	});  //end click
	
	entrancephoto.click(function() {
		$(this).fadeOut(1500);
	}); //end click
	
}); //end ready
