$().ready(function(){
    var HBHeight = $('#headban').height() + 26;
    $('#headban').css('margin-top', '-'+HBHeight+'px');

	$('#header-slides').cycle({
		fx: 'fade',
		speed: 1000,
		timeout: 5000
	});

    $("#menu a:not(.a-blink)").click(function(){
        $(this).parent('li').parent('ul').find('li').removeClass('act');
        $(this).parent('li:has(ul)').addClass('act');
        return false;
    });
});
