$(document).ready(function(){
	$('.banner_small').hover(function(){
		$(this).children('.banner_small_content').animate({'margin-top': '-96'},125,function(){});
	},function() {$(this).children('.banner_small_content').animate({'margin-top': '0'},125,function(){});
	});
	$('.banner_mc_all').hover(function(){
		$(this).addClass('active');},function() {$(this).removeClass('active');
	});
	$("#banner_50").scrollable({
		items : ".banner_zhp",
		circular: true
	});
	setBannerToolTip();
});
function setBannerToolTip() {
	$(".banner_main_list a[title]").tooltip({position:'bottom center' });
}
