jQuery(document).ready(function(){
	jQuery('a', '#accord').each(function(){
        if ($(this).attr('href')=='#' && $(this).attr('rel')=='') 
            $(this).css({
                //color: '#000'
            });
        $(this).click(function(event){
            //if($(this).hasClass('selrel') && $(this).attr('rel')!='') document.location=$(this).attr('rel');
            if ($(this).next('ul').length > 0) {
                event.preventDefault();
            }
            $(this).addClass('selrel').hasClass('level1') ? $(this).addClass('level1selected') : '';
            $(this).next().slideDown('slow');
            $('ul', $(this).parent().siblings()).slideUp('slow');
            $('a', $(this).parent().siblings()).removeClass('selrel').removeClass('level1selected');
        })
    })
	jQuery('.teaser-text').hover(function(){
		jQuery('.teaser-preview-pas',jQuery(this)).hide();
		jQuery('.teaser-preview-act',jQuery(this)).show();
	},function(){
		jQuery('.teaser-preview-pas',jQuery(this)).show();
		jQuery('.teaser-preview-act',jQuery(this)).hide();
	})
})
