$(document).ready(function() {
    var arLen=home_images.length;
    if (arLen > 0)
    {
        for ( var i=0, len=arLen-1; i<len; ++i ){
            var image = "<image src=\"" + home_images[i] + "\" alt=\"\" width=\"" + width + "\" height=\"" + height + "\" >"
            $("#home_pictures").html($("#home_pictures").html() + image);
        };
    };
    $("#home_pictures").cycle()
});