﻿$(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=\"709\" height=\"200\" >"
            $("#home_pictures").html($("#home_pictures").html() + image);
        };
    };
    $("#home_pictures").cycle();
    
    $("#logos a").hover(
      function(){
        $("#home_pictures").cycle(parseInt($(this).attr("id"))-1);
        $('#home_pictures').cycle('pause'); 
      },
      function(){
        $('#home_pictures').cycle('resume'); 
      }
     );
});