$(document).ready(function()
{

    $('ul#indexbannerticker').innerfade({
        speed: 2000,
        timeout: 10000,
        type: 'sequence',
        containerheight: '200px'
    });


    $(".index_img_portfolio").fadeTo("slow", 0.5);
    $(".index_img_portfolio").hover(function()
    {
        $(this).fadeTo("slow", 1.0);
    }, function()
    {
        $(this).fadeTo("slow", 0.5);
    });

    $('ul#indexbannerticker').css('display', 'block');

});

