  // JS function for uncrypting spam-protected emails:
function UnCryptMailto(s) {	//
	var n=0;
	var r="";
	for(var i=0; i < s.length; i++) {
		n=s.charCodeAt(i);
		if (n>=8364) {n = 128;}
		r += String.fromCharCode(n-(1));
	}
	return r;
}
  // JS function for uncrypting spam-protected emails:
function linkTo_UnCryptMailto(s)	{	//
	location.href=UnCryptMailto(s);
}




function search_clear(){
   document.getElementById('search').value='';
   //document.getElementById('suchfeld2').value='';
}


function search_fill(){
   if(document.getElementById('search').value == ''){
      document.getElementById('search').value=' Suche';
   }
}


jQuery(function($) {
$('#visual_rechts').crossSlide({
  sleep: 5, //in sec
  fade: 3   //in sec
}, [
  { src: 'images/visual_rechts_1.jpg', href: '#'},
  { src: 'images/visual_rechts_2.jpg', href: '#'},
  { src: 'images/visual_rechts_3.jpg', href: '#'}
]);


$(function() {
	$('.product img').hover(
		function() { $(this).fadeTo("slow", 0.33); },
		function() { $(this).fadeTo("slow", 1); }
	);
});


});


