$(window).load(function() {
      bike_type=$("#scroll-images img.first").attr("alt");
      $("#bike-type").html(bike_type);
    $("#scroll-images").cycle({
        fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
        timeout:5000,
        speed:1500,
        before:function(c,n,o,f)
        {
            bike_type=$(n).attr("alt");
            cur_bike_type=$(c).attr("alt");
            if(bike_type!=cur_bike_type)
            {
                $("#bike-type").fadeOut(700,function(){
                   $("#bike-type").html(bike_type);
                $("#bike-type").fadeIn();
                });
               
            }

       
        }
    
    });



    

});


