$(document).ready(function() {
  $('#image_rotate>li').css("display","block");
	$('#image_rotate').innerfade({ 
		speed: 'slow', 
		timeout: 7000, 
		type: 'random', 
		containerheight: '108px'
	});
// boxen startseite unten:
$('DIV.sb-boxtxt').each(function() {
		if($(this).find('h3 a:first').attr('href') != undefined) {
			 $(this).hover(function() {
        		$(this).addClass('hover');
      			}, function() {
       			 $(this).removeClass('hover');	  
	  		});	
		}
});
$('DIV.sb-boxtxt').click(function() {
		  var linkziel = $(this).find('h3 a:first').attr('href');
		  if(linkziel != undefined) {
			  // fix wegen coolURI...
		  	document.location.href = document.location.protocol + "//" + document.location.host +"/" + linkziel;
		  }
}); 
    
// doc ready ende:
});
