function resetImages(anch) {
$("div[id^='product-image']").addClass("hide");	
}
function showImages(tabName,anch) {
	$('#product-image-' + tabName).removeClass('hide');
	return false;
}


