
//requires jQuery


//wait for the DOM to be loaded
jQuery( document ).ready( function() {

	//Set image galleries to lightbox.
	if( $( 'body' ).hasClass( 'gallery' ) )
	{
		$('ul#graffitiRemovalGallery li a').lightBox();
		$('ul#steamPressureCleaningGallery li a').lightBox();
	};//end if
	
} );
