// JavaScript Document

	
	
	/*function twitterFeedUpdate() {
		var url = '/site/modules/twitter_rss/twitterFeedUpdate.helper.php';
		var myAjax 	= new Ajax.Request( url, {
											method: 'post',
											onFailure: function(transport) 
													   {
															alert('connection to '+url+' failed...');
													   }
											  }
									   );
	}*/
	
	
	
	function twitterFeedUpdate() {
		$.ajax({
		   type: "POST",
		   url: "/site/modules/twitter_rss/twitterFeedUpdate.helper.php",
		   success: function(msg) {
			 /*if(msg) {
					$('#showTableDiv').html(msg);
				}*/
		   },
		   error: function(url){
			    //alert('connection '+this.url+' failed...');
		   }
		 });
 	}
