function lightBoxMe ( o )
 	{
 		lb = document.getElementById ( "lightBox" );
 		lb_s = document.getElementById ( "lightBoxShadow" );
 		lb_h1 = document.getElementById ("lightBoxTitle");
 		lb_img = document.getElementById ("lightBoxImage");
 		lb_p = document.getElementById ("lightBoxDescription");
 		lb_d = document.getElementById ("download");
 		lb_t = document.getElementById("lightBoxTags");
 		
 		lb_h1.innerHTML = o.title;
 		lb_img.src = o.getAttribute("viewLink");
 		lb_p.innerHTML = o.alt;
 		
 		if (o.getAttribute("link"))
 		{
 			lb_d.href = o.getAttribute("link");
 			lb_d.innerHTML = o.getAttribute("linkWord");
 			lb_d.setAttribute("alt",o.getAttribute("linkWord"));
 			lb_d.setAttribute("title",o.getAttribute("linkWord"));
 			lb_d.style.display = "block";
 			
 			lb_h1.style.textAlign ="left";
 		}
 		else
 		{
 			lb_d.style.display = "none";
 			lb_h1.style.textAlign ="center";
 		}
 		lb_t.innerHTML = o.getAttribute("tags");
 		
 		lb_s.style.display="block";
 		lb.style.display="block";
 	}
 	function closeLightBox ()
 	{
 		lb = document.getElementById ( "lightBox" );
 		lb_s = document.getElementById ( "lightBoxShadow" );
 		lb_h1.innerHTML = "";
 		lb_img.src = "";
 		lb_p.innerHTML = "";
 		
 		lb_s.style.display="none";
 		lb.style.display="none";
 	}
 	function brighten ( o )
 	{

 		window.setTimeout( "document.getElementById('" + o.id + "').setAttribute('class','adTrans2');", 20 );
 		window.setTimeout( "document.getElementById('" + o.id + "').setAttribute('class','adTrans1');",  60 );
 		window.setTimeout( "document.getElementById('" + o.id + "').setAttribute('class','adTrans0');", 100 );
 		
 		window.setTimeout( "document.getElementById('" + o.id + "').style.filter='alpha (opacity=80) !important';", 20 );
 		window.setTimeout( "document.getElementById('" + o.id + "').style.filter='alpha (opacity=90) !important';", 40 );
 		window.setTimeout( "document.getElementById('" + o.id + "').style.filter='alpha (opacity=100) !important';", 60 );
 		
 	}
 	
 	function darken (o)
 	{
 		window.setTimeout( "document.getElementById('" + o.id + "').setAttribute('class','adTrans1');", 20 );
 		window.setTimeout( "document.getElementById('" + o.id + "').setAttribute('class','adTrans2');",  60 );
 		window.setTimeout( "document.getElementById('" + o.id + "').setAttribute('class','adTrans3');", 100 );

 		window.setTimeout( "document.getElementById('" + o.id + "').style.filter='alpha (opacity=90) !important';", 20 );
 		window.setTimeout( "document.getElementById('" + o.id + "').style.filter='alpha (opacity=80) !important';", 40 );
 		window.setTimeout( "document.getElementById('" + o.id + "').style.filter='alpha (opacity=70) !important';", 60 );
 	}