//##########################################################################################

//--> Setup :: Page
	P = {};
//<-- End Setup :: Page

//##########################################################################################

//--> Begin Function :: Init
	P.Init = function() {
		// Use this example, or...
		$("a[rel='lightbox']").lightBox(); // Select all links that contains lightbox in the attribute rel
	};
//<-- End Function :: Init

//##########################################################################################
	
	//start when ready
	$(document).ready(P.Init);
	
//##########################################################################################
