$(document).ready(function() {
	$.Juitter.start({
		searchType:"searchWord", // "searchWord", "fromUser", "toUser"
		searchObject:"digitalhorizons,creativeindustries", // needed, u/w
		lang:"en", 
		live:"live-15", 
		placeHolder:"livetweets", 
		loadMSG: "Loading messages...",
		imgName: "loader.gif",
		total: 5,
		readMore: "View Tweet", // read more message to be show after the tweet content
		nameUser:"text" // insert "image" to show avatar of "text" to show the name of the user that sent the tweet 
	});	
	$("#aRodrigo").click(function(){
		$(".jLinks").removeClass("on");
		$(this).addClass("on");									  
		$.Juitter.start({
			searchType:"fromUser",
			searchObject:"mrjuitter,rodrigofante",
			live:"live-120" // it will be updated every 120 seconds/2 minutes
		});
	});
	$("#aIphone").click(function(){
		$(".jLinks").removeClass("on");
		$(this).addClass("on");									   
		$.Juitter.start({
			searchType:"searchWord",
			searchObject:"iPhone,apple,ipod",
			live:"live-20"  // it will be update every 20 seconds 
		});
	});
	$("#aJuitter").click(function(){
		$(".jLinks").removeClass("on");
		$(this).addClass("on");								  
		$.Juitter.start({
			searchType:"searchWord",
			searchObject:"Juitter",
			live:"live-180" // it will be updated every 180 seconds/3 minutes
		});
	});
});

