jQuery(function(){
	jQuery('#cwSubmitChangedDistricts').hide();	
});

function cwchangeDistrict(siteid,districtType,stabbr,legtype,chamber){
	var dropdownid = 'cwebcontent_' + districtType + 'Selector';
	var district = jQuery('#' + dropdownid + ' :selected').val();
	
	jQuery.post(cw_rootPath + "index.cfm?siteid=" + siteid + "&action=Legislators.ChangeDistrictDisplay&js=true",{
		'stabbr' : stabbr,
		'legtype' : legtype,
		'chamber' : chamber,
		'district' : district
	},
	function(response){
		var imagesrc = '';
		var contentsrc = '';
		imagesrc += '<img src="' + response.CONTENT.IMAGEPATH + '">';
		contentsrc += response.CONTENT.TITLE + ' ' + response.CONTENT.FIRST + ' ' + response.CONTENT.LAST + ' ';
		contentsrc += '(' + response.CONTENT.PARTY;	
		jQuery('#cw' + response.CONTENT.LEGTYPE + response.CONTENT.CHAMBER + 'Image').html(imagesrc);
		jQuery('#cw' + response.CONTENT.LEGTYPE + response.CONTENT.CHAMBER + 'Content').html(contentsrc);
	}, 'json');
}

