var ajax_load = "<img src='http://www.bullcitybbq.com/cms/images/loading.gif' alt='loading...' />"; 


var urlPath = "<?=bloginfo('template_directory')?>";

function addVote(poll_question_id, poll_answer_id, state_name){
	
	jQuery("#div-vote").empty().html(ajax_load);
	jQuery.ajax({
	   	type: 	"GET",
	   	url:  "/cms/wp-content/themes/bullcity/customFunctions.php",
		//url: 	urlPath,
	   	data: 	"poll=addVote&type=new&poll_question_id="+poll_question_id+
				"&poll_answer_id="+poll_answer_id+"&state_name="+state_name,
		error: function(){
			jQuery('#div-vote').html('Error loading document');
		},
	   	success: function(msg){
			jQuery('#div-vote').html(msg);
	   	}
	 });
}

function displayVote(state_name){
	
	//alert(state_name);
	
	//alert(urlPath);
	
	jQuery("#div-vote").empty().html(ajax_load);
	jQuery.ajax({
	   	type: 	"GET",
	   	url: "/cms/wp-content/themes/bullcity/customFunctions.php",
		//url: 	urlPath,
	   	data: 	"poll=displayVote&state_name="+state_name,
		error: function(){
		jQuery('#div-vote').html('Error loading document');
		},
	   	success: function(msg){
			jQuery('#div-vote').html(msg);
	   	}
	 });
}

