jQuery(document).ready(function() {
	$("#slide h3").click(function() {
		$(this).parents().find("img.on").addClass("hide");
		$(this).parents().find("img.off").removeClass("hide");
		$(this).find("img.on").removeClass("hide");
		$(this).find("img.off").addClass("hide");
		$(this).parents().find("div.slide_item").addClass("hide");
		$(this).next("div.slide_item").removeClass("hide");
	});
});