function slideSwitch() {
    var $active = $('#slideshow img.active');

    if ( $active.length == 0 ) $active = $('#slideshow img:last');

    var $next =  $active.next().length ? $active.next()
        : $('#slideshow img:first');

    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 3000, function() {
            $active.removeClass('active last-active');
        });
	
	//var color = $next.attr('rel');
	//$('.slideshow_container').animate({backgroundColor:color}, 1000);
}

$(function() {
    setInterval( "slideSwitch()", 8000 );
});

$(document).ready(function() {
	$('div.diensten_list_module ul.level_0 li ul.level_1').hide();					   
	$('div.diensten_list_module ul.level_0 li a.level_0').hover(function(event) {
		$('div.diensten_list_module ul.level_0 li ul.level_1').hide();
		event.preventDefault();
		$(this).parent().find('ul.level_1').show();
		return false;
	});
	$('div.diensten_list_module ul.level_0').bind("mouseleave",function(event) {$('div.diensten_list_module ul.level_0 li ul.sub_item').hide();});
	
	$('div.newsletter input').focus(function() { if ($(this).val() == '') $(this).parent().find('label').hide();});
	$('div.newsletter input').blur(function() { if ($(this).val() == '') $(this).parent().find('label').show();});
});
swfobject.embedSWF("/templates/vanhier/swfobject/squarebanner2.swf", "squarebanner", "240", "200", "9.0.0", {}, {}, {wmode: 'transparent'});
