$(document).ready( function() {
	ocultarBordes();
	/*navigationImage();*/
	showSocialLinks();
})

function SelectImage(index) {
	$('.ProductosImageContainer').hide();
	$('.DetallesImageContainer').hide();
	$('#ProductosImageContainer-' + index).show();
	$('.ProductosDescriptionContainer').hide();
	$('#ProductosDescriptionContainer-' + index).show();
	$('.ProductosDetallesContainer').hide();
	$('#ProductosDetallesContainer-' + index).show();
}

/*function navigationImage() {	
	var zoomimages = $('.ProductosViewListContainer a.lnkThumbImage[href]');
	if (zoomimages.length > 0)
	{ 
	   zoomimages.zoomimage({
			   border: 5,
			   caption: false,
			   controls: true,
			   centered: true,
			   opacity:0.3
			});
	   $('div.zooimage').zoomimageClear();
	}
}*/

function SelectDetalle(e, index) {
	$('.ProductosImageContainer').hide();
	$('.DetallesImageContainer').hide().removeClass("DetallesImageContainerSelected");
	$(e).parents('.ProductosDetallesContainer').find('.DetallesImageContainer-' + index).show().addClass("DetallesImageContainerSelected");
	/*navigationImage();*/
}

function ocultarBordes() {
	$('.UltimasNoticiasViewListDescription:last').css({'border':'0'});
	$('.BlogTobisaViewListItemContainer:last').css({'border':'0'});
}

function showSocialLinks() {
	$('.social-links-right-title').click(function() {
	  $('.social-links-right-icons').slideToggle();
	});
}
