willow.fixPodiumNav();

switch(pdGlobal.currentPages[0].id){	
	case 40980: bannerPhotoID = 39769; break; //Discover PA
	case 40981: bannerPhotoID = 39770; break; //Admissions
	case 40982: bannerPhotoID = 39771; break; //Academics
	case 40983: bannerPhotoID = 39780; break; //The Arts
	case 40984: bannerPhotoID = 39781; break; //Athletics
	case 40985: bannerPhotoID = 39782; break; //Student Life
	case 40986: bannerPhotoID = 39783; break; //Support The Mission
	default: bannerPhotoID = 39784; break; //Community / Portal / Default
}

willow.ready(function($) {
	willow.photosLoaded($("#bannerPhoto img"), bannerPhotoID);;

});

willow.photosLoaded = function($obj,id){
	willow.getPhotos(id,function(data){
	if(data.photo.images){
		$obj.attr("src",data.photo.images[0].path);
		
	} else {
		$obj.attr("src","/ftpimages/261/podium/banner/photo_portal_v4.jpg");
		}
	});
}

