$(document).ready(function(){
	$("ul.brick li").hover(
		function () { 
			$(this).stop();
			$(this).animate({height: "300px"},450);
		},
		function () { 
			$(this).stop();
			$(this).animate({ height: "110px"},600);
		}
	);
	
	$("ul.programs li.toggle").toggle(
		function () { 
			$(this).stop();
			$(this).animate({height: "350px"},450);
		},
		function () { 
			$(this).stop();
			$(this).animate({ height: "150px"},600);
		}
	);
	
	$("div.login").click(
		function() {
			if (loginput.value == "elite1p") {
				$("div#security_lock").slideUp();
				$("div#secure_content").slideDown();
			} else {
				$("div#security_lock input").css({'background-color':'red','color':'black'});
			}	
		}
	);
	
	$("a.facility").fancybox({
			'zoomSpeedIn':	300, 
			'zoomSpeedOut':	300, 
			'overlayShow':	false
		});

});