//
//  jQuery effekt for aass.no     Alireza Balouch @ Siteman AS 2009
//
var fadetid = 1000;
var ventetid = 4000;

$(document).ready(function(){
    $('.zebra tr:odd:has(td)').addClass('odd');
    $('#art88 .innerart p img').hide();
    $('#art88 .innerart p img:first').show();
    setTimeout( "fadeMe()" ,ventetid);
});

function fadeMe(){
    $('#art88 .innerart p img').each(function(i){
        if (i == 0){
            var lastDiv =  $(this) ;
            $(this).fadeOut(fadetid , function(){
                $(this).remove();
                $('#art88 .innerart p').append(lastDiv);
            });
        }
        if (i == 1){
         $(this).fadeIn(fadetid );
        }
    });
    setTimeout( "fadeMe()" ,ventetid);
}