
Event.observe(window,"load",initThumbs);
function initThumbs()
{
    var imgs = $$(".campusPhoto");
    for(var i=0;i < imgs.length;i++)
    {
		
      Event.observe(imgs[i],"mousedown",
        function(event) { Event.element(event).className = "campusPhotoPressed"; },true);
      Event.observe(imgs[i],"mouseup",
        function(event) 
		{ 
			Event.element(event).className = "campusPhoto";
			if(document.all) //ie7 hack...
				document.location = Event.element(event).parentNode.parentNode.href;
		},true);
	  
    }
    
    //curveAndShadow($("schoolHolder"));
    //bulletCurveClass("newsBullet");
}

