//var params = { allowScriptAccess: "always", wmode: "transparent", flashVars: "xmlfile1=/mapdata/data" };
//var atts = { id: "wwtl-map" };

//$(document).ready(function(){	
//	swfobject.embedSWF("/public/flash/usa_locator_demo.swf", 
//	                     "wwtl-map", "600", "450", "8", null, null, params, atts);
//
//});

$(document).ready(function(){
	$("#compare > a").click(function(){
		$(this).parent().submit();
	});
	
	$("#schoolname").focus(function(){
		$(this).val("");
	});
	
	$(".seenote").click(function(){
		$(this).parent().parent().find(".note").slideToggle('slow', function(){
			if ($(this).is(':visible')) {
			    $(this).parent().find(".seenote").html('Hide Note');
			} else {
			    $(this).parent().find(".seenote").html('See Note');
			}
		});
		return false;
	});
});
