  $(function() {
     // stuff to do on DOM ready here
		 // http://stackoverflow.com/questions/3489137/jquery-fadeout-div-works-load-then-fadein-div-doesnt

    $('.currentpage a.lefthandslink').prepend('&raquo; ');
    
    
    // inside the onFail function, the "this" variable is a pointer to the API
    flashembed("homepageflashvideo", {src: '/templates/TheLeys/homepage30fps.swf', onFail: function() {

        // use API methods here
        //var conf = this.getConf();
        $("#homepageflashvideo").html("<div id='slideshow' class='pics'>" +
        "<img src='/templates/theleys/images/home-main-slides/homepic1.png' width='790' height='598' style='display:none;' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic1a.png' width='790' height='598' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic2.png' width='790' height='598' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic2a.png' width='790' height='598' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic3.png' width='790' height='598' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic3a.png' width='790' height='598' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic4.png' width='790' height='598' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic4a.png' width='790' height='598' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic5.png' width='790' height='598' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic5a.png' width='790' height='598' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic6.png' width='790' height='598' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic6a.png' width='790' height='598' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic7.png' width='790' height='598' />" +
        "<img src='/templates/theleys/images/home-main-slides/homepic7a.png' width='790' height='598' />" +
        "</div>");
    
        $('#slideshow img:first').fadeIn(1000, function() {
            $('#slideshow').cycle({ 
              sync: 1,
            });
        });
       
      }

    });
    
    
    // Add title attributes to images, same as alt text, but image extensions stripped
    $('img[alt]').each(function() {
         this.title = this.alt.replace(/\.gif|\.jpeg|\.jpg|\.png/i,'');
    });

});


