/**
 * @author jleeder
 */
function swapBackground(image, color){
	document.body.style.background = color + ' url('+image+') repeat-x top left';
}
