$(document).ready(

	function() {

		$('a[rel^="lightbox"]').each (
			function (index) {
				$("a[rel^=\"" + $(this).attr("rel") + "\"]").lightBox();
			}
		);

	}

);

