/*------------------------------------------------------------
* Description：Special effects of the website, based on JQuery
* Author：Gavin
* E-mail: shengzhizhang@gmail.com
* Created On：2008-10-27
* Last modification On：2010-01-27 
------------------------------------------------------------*/

$(document).ready(function(){
						   
	// eliminate the dashed box of the links 
	$("a").bind("focus",function(){
    	if(this.blur){
        	this.blur();
        }
    });

    // Default buttons
    $('.defaultBtn').hover(
		// mouseover
		function(){ $(this).addClass('defaultBtnHover'); },
		
		// mouseout
		function(){ $(this).removeClass('defaultBtnHover'); }
	);

    //高亮首页
	var str=window.location.href;
	var r=/[^\/]+$/.exec(str);
	if(r==null || window.location.pathname.indexOf('index')!=-1){
	    $("#mainNav li:first a").addClass("current");
	};
	
});
