// JavaScript Document
//run the effect



function showEffect(contentPane) {
	$(contentPane).show('bounce','',500,callback);
}

function callback(){
	setTimeout(function(){
		$("#effect:visible").removeAttr('style').hide().fadeOut();
	}, 1000);
};
