function showHide(ID,PID){
	  if ($(ID).visible() == false) new Effect.Appear(ID); 
	  	else new Effect.Fade(ID);
	  return false;
	}
function ShowIt(ID){
	new Effect.Appear(ID);
	return false;
}
function HighLightNews(ID)
{
	//new Effect.Highlight(ID, {startcolor:'#F8D14A', endcolor:'#D4EAF8', duration: 2});
	new Effect.Pulsate(ID, {duration: 2, pulse: 4, from: 0.5});
	return false;
}
