// JavaScript Document -- Flyout-Banner/*	$(function() {		$("#banner_flyout").hover(			function() {				$("#banner_fly").animateToClass("banner_flyhover", 1);			}		);	});*/	$(function() {		$("div#banner_flyout").hover(			function() {				$("div#banner_fly").animate({height: 300}, 60);			},			function() {				$("div#banner_fly").animate({height: 90}, 60);			}		);	});	$(function() {		$("div#skyscraper_flyout").hover(			function() {				$("div#skyscraper_fly").animate({width: 420}, 60);			},			function() {				$("div#skyscraper_fly").animate({width: 160}, 60);			}		);	});/*	$(function() {		$("#banner_fly").hover(			function() {				$("#banner_fly").animate({backgroundColor: "#aa0000", width: 400, height: 400}, 1);			},			function() {				$("#banner_fly").animate({backgroundColor: "transparent", width: 300, height: 250}, 1);			}		);	});		$(function() {		$("#skyscraper_fly").hover(			function() {				$("#skyscraper_fly").animate({backgroundColor: "#aa0000", width: 400, height: 400}, 1);			},			function() {				$("#skyscraper_fly").animate({backgroundColor: "transparent", width: 300, height: 250}, 1);			}		);	});*/