//run fun
$(document).ready(function() {
	if ($.browser.msie && (parseInt($.browser.version) <= 7)) {
		try {
			document.execCommand('BackgroundImageCache', false, true);
		} catch(e){}
		$('.clearfix').css('zoom', 1);
	}
	if (window.navigator.userAgent.indexOf("Chrome") !== -1) {
		$('html').css('-webkit-text-size-adjust', 'none');
	}	
	
	$('.tab-title li').click(function() {
		$(this).addClass('active').siblings().removeClass('active');
		$('.tab-content ul').animate({left: $(this).index()*473*-1});
	});
});
