/***** The purpose of this file is to use the command API of Bomgar to return links to the representatives *****/

function getReps(){
	$.ajax({
	url: 'http://www.kishmish.com/wp-content/themes/kishmish_2/bomgar.php',
	success: function(data){
		//alert('The data: '+data);
		if(data == ''){
			data = '<span>Sorry, there are no representatives currently available.</span>'
		}
		$('#rep_holder').html(data);
	}
	});
}
