//Acadiana Film Festival Dynamic Actions
//DOM Manipulation
//
//Author: John Gerdsen <blackshirtmedia.com>
//Date: January, 2009
//
//


//Variable Declaration


//Tween Declaration

function jiggleMe(id){
	//alert(id);
	t1 = new Tween(document.getElementById(id).style,'height',Tween.backEaseInOut,125,135,.55,'px');
	t1.start();
}

function tickleMe(id){
	//alert(id);
	t2 = new Tween(document.getElementById(id).style,'height',Tween.backEaseInOut,135,125,.55,'px');
	t2.start();
}