SLIDER_CHILD_TAB["onSlideHomeChange"] = new Array();

SLIDER_CHILD_TAB["onSlideHomeChange"]["IN"] = function( elem )
{
	elem.find(".SliderHomeContainer").css( "top" ,"auto" );
	elem.find(".SliderHomeContainer").animate({ 
	 	bottom: "0px"
	}, 
	250  , SLIDER_TRANSITION_TYPE );
};

SLIDER_CHILD_TAB["onSlideHomeChange"]["OUT"] = function( elem )
{
	//alert();
	
	elem.find(".SliderHomeContainer").animate({ 
	 	bottom: "-"+elem.find(".SliderHomeContainer").outerHeight()+"px"
	}, 
	 250  , SLIDER_TRANSITION_TYPE );
};

