jQuery(function() {
	initIMG();

	$(".botonDonde").click(function(){
		var id_boton = $(this).attr('id');
		var id_ver = "img-item-"+(id_boton.slice(11,id_boton.length));
		ocultarItems();
		mostrarItem($("#"+id_ver));
	});
 
});

function initIMG(){
	$('#img-item-2').hide();
	$('#img-item-3').hide();
	$('#img-item-4').hide();
	$('#img-item-5').hide();	
}

function ocultarItems(){
	$(".itemImagen").hide();
}

function mostrarItem(elemento){
	$(elemento).show();	
}