$(function(){
 $("#Content_Home_ButtonAbout").colorbox({width:"660px", height:"450px", iframe:true});

 var DIV = $('#Content_Home_ScrollMiddle'), UL = $('#Content_Home_List'), ULPadding = 15;

 var DIVWidth = DIV.width();

 DIV.css({overflow: 'hidden'});

 var LastLI = UL.find('li:last-child');

 DIV.mousemove(function(e){
  var ULWidth = LastLI[0].offsetLeft + LastLI.outerWidth() + ULPadding;

  var Left = (e.pageX - DIV.offset().left) * (ULWidth-DIVWidth) / DIVWidth;

  DIV.scrollLeft(Left);
 });
});
