﻿function img_view(obj, ssrc, iwidth, iheight, stitle)
{
	$(".goods-image-active").each(function() {
		$(this).removeClass("goods-image-active");
		$(this).addClass("goods-image");
	});

	$(obj).addClass("goods-image-active");

	$("#goods-image-main").parent().attr({
		href: obj.href,
		title: stitle
	});

	$("#goods-image-main").attr({
		src: ssrc,
		width: iwidth,
		height: iheight
	});

	return false;
}
