
   
  function displayTweet(){
  	    keywords =  ['and','in','are','is','to','on'];
  		twitterq = keywords[Math.floor(Math.random()*keywords.length)];  
		$.ajax({
			type: "POST",
			url: "http://enote.in/pages/twitterfeed.php",
			cache: false,
			data: "twitterq="+ twitterq,
			success: function(html){
				$("#twitter-results").html(html);
				printer();
			}
		});
  }
  	
	function printer() {
    var i=0;
	var limit = 5;
	var myInterval = window.setInterval(function () {	
	var element =  $("#twitter-results div:nth-last-child(1)");
	$("#twitter-results").prepend(element);
	
	element.fadeIn("slow");
	var lang = document.getElementById('lan').innerHTML;


$("#feed").sundayMorning({destination:lang});


  i++;
	if(i==limit){
		 window.setTimeout(function () {
		 clearInterval(myInterval);
		displayTweet();
	   });
		}
		
	},5000);
  }
 	

	
