/*
	JavaScript for BARNEYS NEW YORK "STYLE"
	http://www.barneys.co.jp/style/
	update - 10/06.2009
	copyright (c) Barneys Japan
*/

$(function(){
	$(".show-box .detail-box a").mouseover(function() {
		replaceImage1(this.id, this.name);
		return false;
	});
	$(".show-box .detail-box a").mouseout(function() {
		replaceImage2(this.id);
		return false;
	});
});

function replaceImage1(id, appendNo) {
	var imgSrcAppend = "/style/images/items/" + id.substr(2) + "/append" + appendNo.substr(6) + ".jpg";

	$("#detail-image").attr('src', imgSrcAppend);

	return false;
}

function replaceImage2(id) {
	var imgSrcDetail = "/style/images/items/" + id.substr(2) + "/detail.jpg";

	$("#detail-image").attr('src', imgSrcDetail);

	return false;
}

