
jQuery(function($) {
$("#lbOverlay").css("background-color","#ffffff");
$("#lbPrevLink").hover(
	function () {
		$(this).css("background-image","url('http://www.undurragadeves.cl/wp-content/plugins/wp-slimbox2/images/es_ES/prevlabel-es.gif')");
	},
	function () {
		$(this).css("background-image","");
	}
);
$("#lbNextLink").hover(
	function () {
		$(this).css("background-image","url('http://www.undurragadeves.cl/wp-content/plugins/wp-slimbox2/images/es_ES/nextlabel-es.gif')");
	},
	function () {
		$(this).css("background-image","");
	}
);$("#lbCloseLink").css("background","transparent url('http://www.undurragadeves.cl/wp-content/plugins/wp-slimbox2/images/es_ES/closelabel-es.gif') no-repeat center");
$("a[rel^='lightbox']").slimbox({
			loop: true,
			overlayOpacity: 1,
			overlayFadeDuration: 200,
			resizeDuration: 1,
			resizeEasing: "swing",
			initialWidth: 911,
			initialHeight: 383,
			imageFadeDuration: 300,
			captionAnimationDuration: 1,
			counterText: "{x} / {y}",
			closeKeys: [27, 88, 67],
			previousKeys: [65, 37],
			nextKeys: [80, 39]
		}, null, function(el) {
		return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
	});

});