/**
 * jQuery lightBox plugin init
 * Select all links that contains lightbox in the attribute rel
 */

$(document).ready(function(){
	$('a[@rel*=lightbox]').lightBox();
});

