$(document).ready(function(){
	$('#cubform').submit(function() {
		$(this).ajaxSubmit({
			target: "#formstatus"
		});
		return false;
	});
	$('.gallery a').lightBox({
		overlayOpacity: 0.8,
		imageLoading: 'files/template/css/img/lightbox-ico-loading.gif',
		imageBtnClose: 'files/template/css/img/lightbox-btn-close.gif',
		imageBtnPrev: 'files/template/css/img/lightbox-btn-prev.gif',
		imageBtnNext: 'files/template/css/img/lightbox-btn-next.gif',
		imageBlank: 'files/template/css/img/lightbox-blank.gif',
		containerResizeSpeed: 350,
		txtImage: 'Bild',
		txtOf: 'von'
	});
	$('div.scrollgal').scrollable({
		size: 1,
		// items are auto-scrolled in 2 secnod interval 
		interval: 4000, 
		// when last item is encountered go back to first item 
		loop: true,  
		// make animation a little slower than the default 
		speed: 2000
		// when seek starts make items little transparent 
	});
	$('div.konzeptSlidebox').scrollable({
		size: 1,
		// items are auto-scrolled in 2 secnod interval 
		interval: 4000, 
		// when last item is encountered go back to first item 
		loop: true,  
		// make animation a little slower than the default 
		speed: 2000
		// when seek starts make items little transparent 
	});
	$('table.skulptur tr:even').addClass('even');

});