	$(document).ready(
			function(){
				$('.fade').innerfade({
					speed: 'slow',
					timeout: 5000,
					type: 'sequence',
					containerheight: '120px'
				});
				$('.fade_banner').innerfade({
					speed: 'slow',
					timeout: 4000,
					type: 'sequence',
					containerheight: '106px'
				});
				$('.top_content_main').innerfade({
					speed: 'slow',
					timeout: 5000,
					type: 'sequence',
					containerheight: '177px'
				});
		});
		$(function(){
			var div = $('div.clip_list'),
				ul = $('ul.scoll');
				div.css({overflow: 'hidden'});
			var divWidth = div.width();
			var lastLi = ul.find('li:last-child');
			div.mousemove(function(e){
				var ulWidth = lastLi[0].offsetLeft + lastLi.outerWidth() + divWidth;
				var left = (e.pageX - div.offset().left) * (ulWidth-divWidth) / divWidth;
				div.scrollLeft(left);
			});
		});