
$(document).ready(function() {

    // Error Reporter
    //$(".report_data_error").live("click", function () { 
	$("body").delegate(".report_data_error", "click", function () { 
        errorURL = "http://maps.co.mecklenburg.nc.us/report_data_problems/report_data_errors.php";
		if (typeof( error_data ) != 'undefined') errorURL += "?extradata=" + error_data;
		$(this).colorbox({width:"550px", height:"550px", iframe:true, href:errorURL});
        $(this).click();
    });

});