jQuery(document).ready(function() {

    jQuery('#navigation').css({
        opacity: "1"
    });
    jQuery('#fotobanner').css({
        opacity: "0"
    });
    jQuery('#banner_left').css({
        opacity: "0"
    });
    jQuery('#rightColumn').css({
        opacity: "0"
    });
    
    jQuery("#backheader").gradient({
        from: 'bfbfbf',
        to: 'ffffff',
        direction: 'horizontal'
    });
    jQuery("#backheader").css({
        opacity: "0.6"
    });
    /*   jQuery("#footer").gradient({
        from: 'bfbfbf',
        to: '696967',
        direction: 'horizontal'
    });  */

    jQuery(" .teaser li").gradient({
        from: 'ffffff',
        to: 'bfbfbf',
        direction: 'horizontal'
    });
    jQuery(".teaser li").corner("10px");

 /*   jQuery('.teaser li').mouseover(function() {
        jQuery('.teaser li').gradient({
            from: 'bfbfbf',
            to: 'fffff',
            direction: 'horizontal'
        });
    });  */
    
    jQuery('#fotobanner').stop().animate({
        opacity:'1'
    },4000);
    jQuery('#banner_left').stop().animate({
        opacity:'1'
    },3000);

    setTimeout(function () {
        jQuery("#navigation").stop().animate({
            opacity:'0.8'
        },2000);
    },1000);
    setTimeout(function () {
        jQuery("#rightColumn").stop().animate({
            opacity:'0.7'
        },2000);
    },1000);
});


