
jQuery(document).ready(function(){
    //  jQuery('#partners-slider .s-img').soChange();  //首页合作伙伴的切换动画
    //jQuery(".menu-424 a").attr('target','_blank');     //添加"在线商店"的点击目标窗口为新页面
    //  jQuery("#product-tabs").tabs();
    //jQuery("#schart-tabs").tabs();
    jQuery('a,input[type="button"],input[type="submit"]').bind('focus',function(){
        if(this.blur){
            this.blur();
        };
    });
    /*
    jQuery(window).bind("load", function() {
        var footerHeight = 0,
        footerTop = 0,
        $footer = jQuery(".region-footer");
        positionFooter();
        //定义positionFooter function
        function positionFooter() {
            //取到div#footer高度
            footerHeight = $footer.height();
            //div#footer离屏幕顶部的距离
            footerTop = (jQuery(window).scrollTop()+jQuery(window).height()-footerHeight)-30+"px";
								
            //如果页面内容高度小于屏幕高度，div#footer将绝对定位到屏幕底部，否则div#footer保留它的正常静态定位
            if ( (jQuery(document.body).height()+footerHeight) < jQuery(window).height()) {
                $footer.css({
                    position: "absolute"
                }).stop().animate({
                    top: footerTop
                });
            } else {
                $footer.css({
                    position: "static"
                });
            }
        }
        jQuery(window).scroll(positionFooter).resize(positionFooter);
    });
    */
});
;

