/* -----------------------------------------------------------------------------
This website is powered by indual
Copyright (c) 2009 indual GmbH (www.indual.ch)                        
-------------------------------------------------------------------------------- */

/* + Functions ----------------------------------------------------------------- */
function loadSearchButton() {
	btn = document.getElementById('searchfield');
	if (btn) {
		btn.onblur = function() { if (btn.value == '') btn.value = 'Suche...'; }
		btn.onfocus = function() { if (btn.value == 'Suche...') btn.value = '';	}
	}
}

/* + On load events ------------------------------------------------------------ */
window.onload = function() {
	// quicksearch
	loadSearchButton();
	// slider
	if (document.getElementById('carousel-wrapper')) {
  	
  	new Carousel('carousel-wrapper', $$('#slider .slide'), $$('a.carousel-control'), { 
		duration: 0.3, 
		auto: false,
		frequency: 3, 
		effect: 'scroll',
		transition: 'sinoidal',
		wheel: false,
		visibleSlides: 1,
		circular: false
	});
							
  }
}
