
jQuery(function($) {
$("#lbOverlay").css("background-color","");
$("#lbPrevLink").hover(
	function () {
		$(this).css("background-image","url('http://www.aldenw.com/wp/wp-content/plugins/wp-slimbox2/images/default/prevlabel.gif')");
	},
	function () {
		$(this).css("background-image","");
	}
);
$("#lbNextLink").hover(
	function () {
		$(this).css("background-image","url('http://www.aldenw.com/wp/wp-content/plugins/wp-slimbox2/images/default/nextlabel.gif')");
	},
	function () {
		$(this).css("background-image","");
	}
);$("#lbCloseLink").css("background","transparent url('http://www.aldenw.com/wp/wp-content/plugins/wp-slimbox2/images/default/closelabel.gif') no-repeat center");
$("a[rel^='lightbox']").slimbox({
			loop: false,
			overlayOpacity: ,
			overlayFadeDuration: ,
			resizeDuration: ,
			resizeEasing: "",
			initialWidth: ,
			initialHeight: ,
			imageFadeDuration: ,
			captionAnimationDuration: ,
			counterText: "",
			closeKeys: [],
			previousKeys: [],
			nextKeys: []
		}, null, function(el) {
		return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
	});

});