/**
 * Переключалка картинок на странице продукта. oldscool
 */
function showPic(caller, thumbPath) {
	var placeholderA = $('#imgplaceholder a');
	var placeholderI = $('#imgplaceholder img');
	
	$(placeholderA).attr('href', $(caller).attr('href'));
	$(placeholderA).attr('title', $(caller).attr('title'));
	$(placeholderI).attr('src', thumbPath);
}
