function getQuerystring(key, default_)
{
  if (default_==null) default_=""; 
  key = key.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regex = new RegExp("[\\?&]"+key+"=([^&#]*)");
  var qs = regex.exec(window.location.href);
  if(qs == null)
    return default_;
  else
    return qs[1];
}


$(document).ready(function(){
	if ($(".content-pagelet").is(":empty")) {
		$(".content-pagelet").remove();
	}
	
	 $("#nav2 ul li:first-child").addClass("first");
	 
	 /* Add Query String to Feedback Link */
	 var pathname = window.location.pathname;
	 $('a#feedbacklink').attr('href', function() {
		return this.href + '?path=' + pathname;
	 });
	 
	 /* Populate URL textarea with Feedback URL */
	  var path_value = "http://www.cityofchesapeake.net" + getQuerystring('path');
	 $("#QIAID_5642").val(path_value);
	  
	
});	
