/*
---
BEHAVIOURS.JS
---
Landschaftspark Binntal
Copyright 2009
swebs GmbH, Brig
---
*/

$(document).ready(function() {
	loadSearchButton();
	// Init galleries
	if ($('#gallery').length) { $('#gallery a').lightBox({ txtImage:'Bild', txtOf:'von' }); }
	if ($('#gallery1').length) { $('#gallery1 a').lightBox({ txtImage:'Bild', txtOf:'von' }); }
	if ($('#gallery2').length) { $('#gallery2 a').lightBox({ txtImage:'Bild', txtOf:'von' }); }
	if ($('#gallery3').length) { $('#gallery3 a').lightBox({ txtImage:'Bild', txtOf:'von' }); }
	if ($('#gallery4').length) { $('#gallery4 a').lightBox({ txtImage:'Bild', txtOf:'von' }); }
	if ($('#gallery5').length) { $('#gallery5 a').lightBox({ txtImage:'Bild', txtOf:'von' }); }
})

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 = '';	}
	}
	
	// Slide Shows
	if ($('#startimage').length) {
		$('#startimage').cycle({ 
			fx:'fade', 
			speed:1000,
			timeout:3500
		});
	}
}