/**
 * New home js
 * 
 * -=========Write less, Do more,it's jQuery-=================
 * 	
 * 
 * @author nightsailer<nightsailer.hibeauty.cn>
 * @version v0.1b200701
 */
 
/**
 * So easy here
 */ 
function int_home(){
    $('div.newtags ul li a').hover(
    	function(){
    		$(this.parentNode).siblings(".ic_pm").removeClass('ic_pm').end().addClass('ic_pm');
			$(this.hash).siblings('.newdhzcd').hide().end().show();
    	},
    	function(){}
    );
}
function doSearch(frm){
     var s=$('#q')[0].value;
     if(s==''){
         alert('请输入要搜索的关键字');
         $('#q')[0].focus();
         return false;
     }
     try{
     var base = frm.action;
     s= trim(s);
     s= s.replace(/\s+/,',');     
     ec=window.encodeURIComponent ? encodeURIComponent : escape;
     window.location = base+ec(s)+'_1.html';
     }catch(e){
         alert(e);
     }
     return false;
 }
 function trim(str, wh){
	if(!str.replace){ return str; }
	if(!str.length){ return str; }
	var re = (wh > 0) ? (/^\s+/) : (wh < 0) ? (/\s+$/) : (/^\s+|\s+$/g);
	return str.replace(re, "");
}
$(document).ready(int_home);