﻿$(document).ready(function() {
    var arLen=home_images.length;
    if (arLen > 0)
    {
        for ( var i=0; i<arLen; ++i ){
            var image = "<image src=\"" + home_images[i][0] + "\" alt=\"\" width=\"709\" height=\"200\" >";
            if (home_images[i][1] != null && home_images[i][1].length > 0)
            {
              var link = "<a href=\"" + home_images[i][1] + "\">" + image + "</a>";
            }else{
              var  link = image;
            }
            $("#home_pictures").html($("#home_pictures").html() + link);
        };
    };
    $("#home_pictures").cycle();
    
    $("#logos a").hover(
      function(){
        $("#home_pictures").cycle(parseInt($(this).attr("id"))-1);
        $('#home_pictures').cycle('pause'); 
      },
      function(){
        $('#home_pictures').cycle('resume'); 
      }
     );
});
