	var oLightBox   = {} ;
	oLightBox.boxes = {} ;
	
	
	
	oLightBox.init = function()
	{
		$( '#midden' ).find( 'img' ).each( function()
			{
				if( (   this.src.indexOf( 'images/layout/' ) == -1 )        &&
						$( this ).parent().get( 0 ).tagName.toLowerCase()  != 'a' ) 
				{
					var sSource = this.src.replace( 'thumbs_1/tn1_', '' ) ;
					$( this ).wrap( '<a class="xabcdelb" href="' + sSource + '"></a>' ) ;
					
				}
			}
		) ;
		$( '.xabcdelb' ).lightBox() ;
	} ;
	
	
	oLightBox.show = function()
	{
		alert( this.src ) ;
		
	}
	
	$( document ).ready( function() 
		{
			oLightBox.init() ;
		
		} ) ;
	
