jQuery(function($) {

	$("#TopItems a img").rollover();
	$("#EYE #Contents a img").rollover();
	$("#CONTACT #Form .Button input:image").rollover();
	
	var itemColor = $("#DETAIL .SpecColorChip img:first-child").attr("title");
	$("#DETAIL td.SpecColor").replaceWith('<td class="SpecColor">' + itemColor + '</td>');

	$("#DETAIL .SpecColorChip img").hover(
		function () {
			var i = $(this).attr("title");
			$("#DETAIL td.SpecColor").replaceWith('<td class="SpecColor">' + i + '</td>');
		},
		function () {
			$("#DETAIL td.SpecColor").replaceWith('<td class="SpecColor">' + itemColor + '</td>');
		}
	);
	$("#DETAIL #ItemNavi td a").hover(
		function () {
			var i = $(this).attr("rel");
			$("#DETAIL #ItemNavi p.LinkItem").replaceWith('<p class="LinkItem">' + i + '</p>');
		},
		function () {
			$("#DETAIL #ItemNavi p.LinkItem").replaceWith('<p class="LinkItem">&nbsp;</p>');
		}
	);
});

