

$(document).ready(function () {
	$("#headnavi li,ul#button li,#footernavi li,#pagetop").live('mouseover mouseout', function (event) {
		
		if (event.type == "mouseover") {
			$("img", this).stop().fadeTo(160, 0.7);
		} else {
			$("img", this).stop().fadeTo(160, 1);	
		}
	});
	
	$("#headnavi ul li:last-child").addClass("last");
	$("#topicpath li:nth-child(1)").addClass("home");
	$("#footer ul#footernavi li:nth-child(1)").addClass("right");
	$("#footer ul#sites li:last-child").addClass("last");
});
