/* -----------------------------------------------------------------------------
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', $$('#carousel-content .slide'), $$('a.carousel-control', 'a.carousel-jumper'), { 
  		auto: true,
  		circular: false,
  		frequency: 7,
  		duration: 0.6
  	});
  }
}