
	function imageSlideShow() {
	  
		var $alt = $('#slideshow img.firstimage');
		var $neu = $alt.next().length ? $alt.next() : $('#slideshow img:first');
		$alt.addClass('image');
		$alt.removeClass('firstimage');
		$neu.css({opacity: 0.0});
		$neu.addClass('firstimage');
		$neu.animate({opacity: 1.0}, 1500, function() {
				$alt.removeClass('image');
		});	  
	}
	
var bSearchBoxCleaned = false;
	
	function clearSearchBox(sSearchWord) {
		
		if(!bSearchBoxCleaned && document.getElementById('csq').value == sSearchWord) {
			document.getElementById('csq').value = '';
			document.getElementById('csq').className = 'activesearchbox';
			bSearchBoxCleaned = true;
		}
	
	}
