$(document).ready(function() {
    for(x=1;x<10;x++) {
        $('#florImg' + x+ ' img').addClass('florImg' + x);
    }

    for(x=2;x<10;x++) {
        $('.florImg' + x).appendTo('#florImg1');
        $('.florImg' + x).hide();
    }

    for(x=1;x<10;x++) {
        $('#florThumb' + x).click(function() {
                for(y=1;y<10;y++) {
                    $('.florImg' + y).hide();
                    }
                    $('.florImg' + this.id.substring(9,10)).show();
                });
    }
});

