$(document).ready(function() {		$(".bubble").hide();	$(".bubble").fadeIn("slow");		//Show State Info Div based on Dropdown Selection	$("select").change(function () {          var str = "";          $("select option:selected").each(function () {                str = $(this).attr("value");              });          $(".stateInfo").hide();          $("#"+str).fadeIn("slow");                            })        .trigger('change');});