$(document).ready(function() {
$.Juitter.start({
searchType:"searchWord", // needed, you can use "searchWord", "fromUser", "toUser"
searchObject:"powwow,pwscoop,powwows.com",
 // needed, you can insert a username here or a word to be searched for.DEFAULT, not working with too much words, only 2 or 3
live:"live-15", // the number after "live-" indicates the time in seconds to wait before request the Twitter API for updates.
placeHolder:"tweets", // Set a place holder DIV which will receive the list of tweets NOT CHANGE THIS
loadMSG: "Loading tweets please wait...", // Loading message
imgName: "loading.gif", // Loading image
total: 30, // number of tweets to be show - max 100
readMore: "Read it on Twitter", // read more message to be show after the tweet content
nameUser:"image" // insert "image" to show avatar of "text" to show the name of the user that sent the tweet 
});	
/*Each block is a Tweets Block, each have is own ID #, the ID is conected with the links in the menu*/
$("#red").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");									   
$.Juitter.start({
searchType:"searchWord",
searchObject:"RedEarth,&tag=RedEarth,&ands=Red+Earth",/*TAG, you can change this*/
live:"live-15"  // it will be update every 15 seconds 
});
});
$("#gon").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");									   
$.Juitter.start({
searchType:"searchWord",
searchObject:"GONPW,&tag=GONPW",
live:"live-15"  // it will be update every 15 seconds 
});
});
$("#mor").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"MorongoPW,&tag=Morongo",
live:"live-15" // it will be updated every 15 seconds
});
});

$("#den").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"DenverMarchPW,&ands=Denver+March",
live:"live-15" // it will be updated every 15 seconds
});
});



$("#nabi").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"NABIPW,&tag=NABIPW",
live:"live-15" // it will be updated every 15 seconds
});
});

$("#hunt").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"HuntingMoonPW,&tag=HuntingMoonPW",
live:"live-15" // it will be updated every 15 seconds
});
});
$("#sch").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"Schemitzun,&tag=Schemitzun",
live:"live-15" // it will be updated every 15 seconds
});
});

$("#shak").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"ShokopeePW,&tag=ShokopeePW",
live:"live-15" // it will be updated every 15 seconds
});
});

$("#hin").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"HinckleyPW,&tag=ShokopeePW",
live:"live-15" // it will be updated every 15 seconds
});
});

$("#praire").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"PraireIslandPW,&tag=PraireIslandPW",
live:"live-15" // it will be updated every 15 seconds
});
});

$("#kinder").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"KinderPW,&tag=KinderPW",
live:"live-15" // it will be updated every 15 seconds
});
});

$("#sanmanuel").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"SanManuelPW,&tag=SanManuelPW",
live:"live-15" // it will be updated every 15 seconds
});
});

$("#stanford").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"StanfordPW,&tag=StanfordPW",
live:"live-15" // it will be updated every 15 seconds
});
});
$("#mayetta").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"MayettaPW,&tag=MayettaPW",
live:"live-15" // it will be updated every 15 seconds
});
});

$("#asu").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"ASUPW,&tag=ASUPW",
live:"live-15" // it will be updated every 15 seconds
});
});



$("#unfilter").click(function(){
$(".jLinks").removeClass("on");
$(this).addClass("on");								  
$.Juitter.start({
searchType:"searchWord",
searchObject:"pwscoop,powwows.com,powwow",
live:"live-15" // it will be updated every 15 seconds
});
});

});