

	$(document).ready(function() {
		$("#intro a.more").toggle(introShow,introHide);
		
	/*
		$("#intro a.more").click(function() {
			$("html").animate({ scrollTop: $(document).height() }, "slow");
			$('html, body').animate({scrollTop: $(document).height()}, 'slow');
		  return false;
		});
	*/
	});	
	
	
	// INTRO FLYOUT
	
	function introShow(){  
		
		$("#intro div").animate({"height": "625px"},200);
		$("#intro div").fadeIn("fast");
		$("#intro a.more").html("&laquo; Hide");
		if ($.browser.msie && $.browser.version == 7.0){
			$("#footer ul").hide();
			$("#footer p").hide();
			}
		}
	function introHide(){ 
		$("#intro div").animate({"height":0},200);
		$("#intro div").fadeOut("fast");
		$("#intro a.more").html("More &raquo;");
		if ($.browser.msie && $.browser.version == 7.0){
			}
		}
