$(document).ready(function(){
	$("#bgcolorBtnWhite").click(function(){
		$("body").css({ backgroundColor:"#FFF", color:"#525252" });
		$("#secondCol dt,#secondCol dd,#secondCol p,#secondCol li,#secondCol a,#size span,#topicPath dt,#topicPath dd,#topicPath p,#topicPath li,#topicPath a").css({ backgroundColor:"#FFFFFF", color:"#525252" });
		$("#footer dt,#footer dd,#footer p,#footer li,#footer address,#footer a").css({ backgroundColor:"#DFDFDF", color:"#525252" });
		$("#footer a").css({ backgroundColor:"#DFDFDF", color:"#525252" });
		$(".txtRed").css({ color:"#ff0000" });
		$("#timeList dt,#timeList dd").css({ background:"none" });
	});
	$("#bgcolorBtnYellow").click(function(){
		$("body").css({ backgroundColor:"#FF0", color:"#525252" });
		$("#secondCol dt,#secondCol dd,#secondCol p,#secondCol li,#secondCol a,#size span,#topicPath dt,#topicPath dd,#topicPath p,#topicPath li,#topicPath a,#footer dt,#footer dd,#footer p,#footer li,#footer address,#footer a,#footer address,#footer a").css({ backgroundColor:"#FF0", color:"#525252" });
		$("#secondCol .txtRed").css({ color:"#FF0000" });
	});
	$("#bgcolorBtnBlue").click(function(){
		$("body").css({ backgroundColor:"#30F", color:"#FFFFFF" });
		$("#secondCol dt,#secondCol dd,#secondCol p,#secondCol li,#secondCol a,#size span,#topicPath dt,#topicPath dd,#topicPath p,#topicPath li,#topicPath a,#footer dt,#footer dd,#footer p,#footer li,#footer address,#footer a").css({ backgroundColor:"#30F", color:"#FFFFFF" });
		$(".txtRed").css({ color:"#FF0000" });
	});
	$("#bgcolorBtnBlack").click(function(){
		$("body").css({ backgroundColor:"#000", color:"#FFFFFF" });
		$("#secondCol dt,#secondCol dd,#secondCol p,#secondCol li,#secondCol a,#size span,#topicPath dt,#topicPath dd,#topicPath p,#topicPath li,#topicPath a,#footer dt,#footer dd,#footer p,#footer li,#footer address,#footer a").css({ backgroundColor:"#000", color:"#FFFFFF" });
		$(".txtRed").css({ color:"#FF0000" });
	});
});

