/*

	Lightbox2.js written by Atlantic BT
	This script was written to modularize Lightbox 2 calls and images.
	You are free to use this script, following Lightbox's license below.
	
	The lightbox scripts are written by Lokesh Dhakar at HuddleTogether.com
	They can be found at: (http://www.huddletogether.com/projects/lightbox2/)
	
	Lightbox is licensed under the Creative Commons Attribution 2.5 License 	
	(http://creativecommons.org/licenses/by/2.5/)

*/


// includes all files for lightbox2
function lbinclude(file, filetype) {
  	
	if (filetype == 'css') {
		document.write('<' + 'link');
		document.write(' rel="stylesheet"');
		document.write(' type="text/css"');
		document.write(' href="' + file + '"');
		document.write(' media="screen"');
		document.write(' />');
	} else {
		document.write('<' + 'script');
		document.write(' type="text/javascript"');
		document.write(' src="' + file + '">');
		document.write('</' + 'script' + '>');
	}
}
 
 
 
 // include files
 lbinclude('/js/lightbox2/inc/lightbox.css', 'css');
 lbinclude('/js/lightbox2/inc/prototype.js', 'javascript');
 lbinclude('/js/lightbox2/inc/scriptaculous.js?load=effects', 'javascript');
 lbinclude('/js/lightbox2/inc/lightbox.js','javascript');