<!-- 
function RotatePomoniana() 
{
	var today = new Date();		
	var day = today.getDate();
	var Counter=0;
	
var RandomContent=new Array();
RandomContent[0]='<a href="/admissions/otherinformation/collegeguides.asp"><img border="0" src="../Images/newimageset/collegequote.gif" width="170" height="301"></a>';
RandomContent[1]='<a href="/admissions/otherinformation/collegeguides.asp"><img border="0" src="../Images/newimageset/collegequote2.gif" width="170" height="301"></a>';
	
	
	
	if ((day >= 1) && (day <= 15))
	  {
	   Counter=0;
	  }
	else if ((day >=16) && (day <= 31))
	  {
	   Counter=1;
	  }

document.write(RandomContent[Counter]);

}
RotatePomoniana();
//-->
