$(document).ready(function(){
	if($(".otra_imagen_producto").length > 0) {
		$(".otra_imagen_producto").click(function () {			
			$("#imagen_principal").attr("src", $(this).attr("src"));
			$("#link_ampliar").attr("href", $(this).attr("src"));
		});
	}
});
