function flickOn(n) {
	var to = document.getElementById('to'+n);
	var tt = document.getElementById('tt'+n);
	
	$(to).animate({ 
		top: "80px"
	  }, 650 );
	  
	 $(tt).animate({ 
		top: "80px"
	  }, 650 );
}

function flickOff(n) {
	var to = document.getElementById('to'+n);
	var tt = document.getElementById('tt'+n);
	
	$(to).animate({ 
		top: "140px"
	  }, 650 );
	  
	 $(tt).animate({ 
		top: "140px"
	  }, 650 );
}

