$(document).ready(function() {
	$("#reStyle").click(function() {
		$("#body").removeClass("RedStyle");
		$("#reStyle").hide();
		$("#adpicbanner").show();
	});
	
	$("#reStyle").onmouseover = function() {
		this.className = "hover"
	};
	$("#reStyle").onmouseout = function() {
		this.className = ""
	};
});

