$(document).ready(function(){
	$("a#fnlclose").click(function(){
		$("div.overlay").hide();
		$("div#fnlwrap").hide();
	});

	$("a#fnlclose").hover(
		function() {$(this).css({background: "#FF1100"});},
		function() {$(this).css({background: "none"});}
	);
	
});

$(document).ready(function(){
	$("input[@type=text]").addClass("input-text");
	$("input[@type=submit]").addClass("input-submit");


	$("div#fnl a").click(function(){
		$("div#fnl").hide();
		$("#leftrail").show();
		$("#rightrail").show();
		$("#midcolwrap").show();
		$("#gutter").show();
	});

});