var $j = jQuery.noConflict();

function lightbox() {
	// Use this example, or...
	$j('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
}

$j(document).ready(launch);

function launch(){
	lightbox();
}