
if($$('content_3_images')) {
	new SlideDDShow('slidedd', {
		glow: true,
		glowSize:40,
		margin: 0,
		speed: 1000,
		bgColor: '#FFFFFF',
		
		createTitleBar: function(slideDDShow) {
		},
		
		createTitleDisplay: function(slideDDShow) {
			var titletable = new Element('table');
			var titletablebody = new Element('tbody').inject(titletable);
			var tr = new Element('tr').inject(titletablebody);
			var td = new Element('td', { 
				'class': slideDDShow.options.cssPrefix + "_title_bg_a"
			}).inject(tr);
			td.setHTML(slideDDShow.currentTitle);
			new Element('td', { 
				'class': slideDDShow.options.cssPrefix + "_title_bg_b"
			}).inject(tr);
			titletable.inject(slideDDShow.titlediv);
		}
		
		
	});
}