/*

Author: bob
Feature: Second-level menus
Update: 2008/12/20
Tutorial URL: http://www.bbon.cn/
*/


jQuery(document).ready(function($){ /** 滑动tab 20100815*/

    $('#tab-title span').mouseover(function(){
	$(this).addClass("selected").siblings().removeClass();
	$("#tab-content > ul").eq($('#tab-title span').index(this)).show().siblings().hide();
});
	$(".linkpage a").each(function(e){  /** 用以获取Google服务器上缓存图标，博友连接每个网址前面的图标 20100820*/

$(this).prepend("<img src=http://www.google.com/s2/favicons?domain="+this.href.replace(/^(http:\/\/[^\/]+).*$/, '$1').replace( 'http://', '' )+">");  

}); 
	
$("a[href*='http://']:not([href*='"+location.hostname+"']),[href*='https://']:not([href*='"+location.hostname+"'])")
.addClass("external")
.attr("target","_blank");


	});

