var ColorboxTools = {

	ColorBoxMode : '',

	iframeSettings: {
		'opacity':				0.6,
		'scrolling':			false,
		'title':				false,
		'next':                 'nächstes Bild',
		'previous':             'vorheriges Bild',
		'current':              '<a id="cbDownload" title="Bild speichern"><span class="text">Bild {current} / {total}</span><span class="dlCaption"> speichern</span></a>',
		'close':                'schliessen'
	},

	init:function() {

		if (typeof sColorBoxMode != 'undefined') {
			this.ColorBoxMode = sColorBoxMode;
		}

		if (typeof jQuery().colorbox == 'function')
		{
			jQuery('.ce_gallery a[rel*="lightbox"]').colorbox(this.iframeSettings);
			jQuery(document).bind('cbox_complete', function() {
				jQuery('#cbDownload').bind('click.download', function() {
					var source = jQuery('#cboxContent img.cboxPhoto').attr('src');
					var dlLink = 'tl_files/scripts/download-image.php?i=' + source;
					jQuery(this).attr('href', dlLink);
				});
			});
		}
	}
}



var UIOptimisations = {

	init: function() {
		this.startImageAnimation();
		this.initDateSelector();
	},

	startImageAnimation:function() {
		try {
			$('#right .mod_articleImages').cycle({
				fx:			'fade',
				random:		0,
				timeout:	2500
			});
		} catch(e) {}
	},

	initDateSelector:function() {
		var lngDE = {
			'dateFormat':   'dd.mm.yy',
			'dayNamesMin':  ['So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa'],
			'dayNames':     ['Sonntag', 'Montag', 'Dienstag', 'Mittwoch', 'Donnerstag', 'Freitag', 'Samstag'],
			'monthNames':   ['Januar','Februar','März','April','Mai','Juni','Juli','August','September','Oktober','November','Dezember'],
			'nextText':     'vor',
			'prevText':     'zurück'
		};
		var lngEN = {
			'dateFormat':   'dd.mm.yy'
		}

		jQuery('#ctrl_13').datepicker( lngDE );
		jQuery('#ctrl_26').datepicker( lngEN );
	}

}



function initPage() {
	ColorboxTools.init();
	UIOptimisations.init();
}
