
$("#home .category h2").each(function(){
	$(this).replaceWith("<h3>" + $(this).text() + "</h3>");
});

$("#container").dropShadow();

$("#byState .category div").hide();
$("#byState .category h2").click(function(){
    $(this).parent().children("div").slideToggle(100);
});