function init() {
//	if (document.all.top)	{	
	if (1==1)	{	//
		var menuYloc = parseFloat($("#guickMenu, #prosearch, #shopsearch").css("top").substring(0,$("#guickMenu, #prosearch, #shopsearch").css("top").indexOf("px")));  
		var limitTop = $("#dFoot").offset().top - $("#shopsearch").offset().top - $("#shopsearch").height(); // TOP值防止无限滚动
		$(window).scroll(function () {   
			   var offsetVal = parseFloat(menuYloc,10)+parseFloat($(document).scrollTop(),10) // 偏移int类型的值
			   var offset = menuYloc+$(document).scrollTop()+"px";  
			   if(limitTop < offsetVal) return;  // 防止无限滚动
			   $("#guickMenu, #prosearch, #shopsearch").animate({top:offset},{duration:800,queue:false});  
		 });  

 	}
}


