//
// $Id: LightBoxGeneric.js,v 1.1.1.1 2010/02/26 08:30:22 steve Exp $
//
// See here for more options: http://leandrovieira.com/projects/jquery/lightbox/
//
var LightBoxGeneric = function() {

    this.applyLightBox = function(nodes) {

        $(nodes).lightBox({
	          imageLoading:   COMMONROOT + '/images/lightBoxLoading.gif',
	          imageBtnClose:  COMMONROOT + '/images/lightBoxClose.gif',
	          imageBtnPrev:   COMMONROOT + '/images/lightBoxPrev.gif',
	          imageBtnNext:   COMMONROOT + '/images/lightBoxNext.gif'
        })
    }
}
