﻿jQuery(document).ready(function(){
  var index = 0;
  Lshowdivfade(index);
  jQuery('#Content').hover(function(){
    if(LMyTime){
     clearInterval(LMyTime);
    }
   },function(){
    LMyTime = setInterval(function(){
      Lshowdivfade(index)
    index++;
    if(index==2){index=0;}
    } , 4000);
 });
 var LMyTime = setInterval(function(){
  Lshowdivfade(index)
  index++;
  if(index==2){index=0;}
 } , 4000);
})
function Lshowdivfade(i){
    jQuery("#Content .bt_l")
      .eq(i).stop(true,true).fadeIn(400).siblings().hide();
}

  