jQuery(document).ready(function(){
    
    /*
        init Cycle Plugin
    */
    jQuery('.cycle .csc-textpic-imagecolumn').cycle({
        timeout: 6000,
        speed: 800,
        random: true
    });
    
    
    /*
        add class if first menu-item is active
    */
    if(jQuery('#menu li:first').hasClass('active')) {
        jQuery('#submenu').addClass('first');
    }
    
    
    /*
        search input
    */
    jQuery('#search .text').bind({
        focusin: function(){
            if(jQuery(this).attr('value') == "Seite durchsuchen") {
                jQuery(this).attr('value','');
            }
        },
        focusout: function(){
            if(jQuery(this).attr('value') == "") {
                jQuery(this).attr('value','Seite durchsuchen');
            }
        }
    });
    
    /*
        equal height for teasers
    */
    jQuery.makeElementsEqual(jQuery('#right .teaser-container .teaser-item'), false, 'max');
    
    /*
        add
    */
    if((jQuery.browser.version == 6.0) && jQuery.browser.msie) {
        jQuery('#right .teaser-container .teaser-item:first-child').addClass('first');
    }
    
});
