/*  ContentFlowAddOn_lightbox, version 3.0 
 *  (c) 2008 - 2010 Sebastian Kutsch
 *  <http://www.jacksasylum.eu/ContentFlow/>
 *
 *  This file is distributed under the terms of the MIT license.
 *  (see http://www.jacksasylum.eu/ContentFlow/LICENSE)
 */

new ContentFlowAddOn ('imagelinks', {

	
	ContentFlowConf: {
        onclickInactiveItem: function (item) {
            //this.conf.onclickActiveItem(item);
        },

        onclickActiveItem: function (item) {
			var content = item.content;
			var link = content.getAttribute('longdesc');
			window.location = link;
        }
    }

});

