function changeBackgroundColor(obj, color){
	if(obj){
		obj.backgroundColor = color;
	}
}

/*
function loadSlider(){
	//change the 'baseURL' to reflect the host and or path to your images
	FOTO.Slider.baseURL = 'http://wangerinweb.com/handson/images/';

	//set images by filling our bucket directly
	FOTO.Slider.bucket = {
		'default': {
			0: {'thumb': 'cave_ creek_bath_thumb.jpg', 	 'main': 'cave_ creek_bath.jpg', 		'caption': 'Cave Creek Bathroom'},
			1: {'thumb': 'cave_creek_bath2_thumb.jpg', 	 'main': 'cave_creek_bath2.jpg', 		'caption': 'Cave Creek Bathroom 2'},
			2: {'thumb': 'cave_creek_hall_thumb.jpg', 	 'main': 'cave_creek_hall.jpg', 		'caption': 'Cave Creek Hallway'},
			3: {'thumb': 'cave_creek_fireplace_thumb.jpg', 'main': 'cave_creek_fireplace.jpg', 	'caption': 'Cave Creek Fireplace'}
		}
	};	
	
	FOTO.Slider.reload('default'); 
	FOTO.Slider.preloadImages('default');
	//FOTO.Slider.enableSlideshow('default');
	//FOTO.Slider.play('default');
}*/