rollovers = function() {
		var photos = document.getElementById('team').getElementsByTagName('div');
		//var splashPhoto = document.getElementById('splash').getElementsByTagName('img')
    var splash = document.getElementById('photos');

		for (i=0; i<photos.length; i++){
			// Mouseover
			photos[i].onmouseover = function(){
				splash.style.background = 'url(images/team_photos/' + this.id + '_splash_large.jpg) top left no-repeat';
			}

			// Mouseout
			photos[i].onmouseout = function(){
				splash.style.background = 'url(images/team_photos/photo_sprite.jpg) top left no-repeat';
			}
		}
}

rolloverDetail = function(){};

// rolloverDetail = function() {
// 		var photoDetail = document.getElementById('team').getElementsByTagName('img');
// 		var splashPhoto = document.getElementById('splash').getElementsByTagName('img');
// 		var splash = document.getElementById('splash');
// 		splash.style.background = "url(" + splashPhoto[0].src + ") top left no-repeat";
// 
// 	for (i=0; i<photoDetail.length; i++){
// 		// Mouseover
// 		photoDetail[i].onmouseover = function(){
// 			var swapImg = this.src.substring(0,this.src.lastIndexOf('.jpg'));
// 			splashImg = swapImg + "_splash.jpg";
// 			splashPhoto[0].src = splashImg;
// 		}
// 
// 		// Mouseout
// 		photoDetail[i].onmouseout = function(){
// 			splashPhoto[0].src = "images/trans.gif";
// 		}
// 	}
// }
//    

