$(document).ready(function(){
	intial();					   
});
function intial(){
	init();
	initsearch();
};
function goask(){
	 if(!currUser){
	       alert("对不起，只有信息会员才能发布询价，请先登录！");
		      goTO2(window.location.href);
    	  return;
	  }else{
		 if(currUser["degree"]=="2"|| currUser["degree"]=="4"||currUser["degree"]=="11"||currUser["degree"]=="12")
		{alert("对不起，只有信息会员才能发布询价！"); 
		 return false;
		}
		else
		{
		  		  if(currUser["degree"]=="8")
		  {
		    window.location.href="/module/vip/ask/askprice.jsp";
			return;
		  }
		  if(currUser["degree"]=="9")
		  {
		    window.location.href="/module/company/comp_ask.jsp";
			return;
		  }
		   window.location.href="/module/member/my_ask_release.jsp";
		}
	  }
};

function initBlock(){
	$(".special-button-fire").removeClass("special-button-fire").addClass("special-button-default");
	$(".special-fire-contact").hide("fast");
};

function showBlock(el){
	initBlock();
	$("#"+el).removeClass("special-button-default").addClass("special-button-fire").show();	
	$("#"+el+"_d").show("600");
};