#############
Fusion Lightbox 1.0 copyright Koen "FireBlood" Reus 2008. All rights reserved.

'Fusion Lightbox is a lightbox mod for PHP-Fusion. It's basicly more "Web 2.0"
than the old photoalbum. When you click a photo, it will slide over the current
page, instead of opening up a popup.'

Like this mod? Take a look at:
http://dev.fireblood.nl
for more!
#############


You can install the easy way or the hard way:

1. Just copy and paste all premodded files (wich will overwrite your current mods)
2. Or do it the way below:

At first, upload all the files(except the PHP files) in the upload folder on your websites main directory.

After that, open 
themes/templates/header.php 

And find:
<script type='text/javascript' src='".INCLUDES."jquery.js'></script>\n

Create a new line (press enter) and add the following right after:
<script type=\"text/javascript\" src=\"".INCLUDES."prototype.js\"></script>
<script type=\"text/javascript\" src=\"".INCLUDES."scriptaculous.js?load=effects,builder\"></script>
<script type=\"text/javascript\" src=\"".INCLUDES."lightbox.js\"></script>
<link rel=\"stylesheet\" href=\"lightbox/lightbox.css\" type=\"text/css\" media=\"screen\" />



Open photogallery.php and  find: 
	<a href='".FUSION_SELF."?photo_id=".$data['photo_id']."'>";
	
Replace with
	<a href='".PHOTODIR."".$data['photo_filename']."' title='".$data['photo_description']."' rel='lightbox[1]'>";				
	
There you go, your lightbox will work now!
