
/*「lightbox」とのコンフリクト回避のため「$」を「jQuery」に書き換え*/

var name = "#floatMenu";
var menuYloc = null;
jQuery(function(){
	menuYloc = parseInt(jQuery(name).css("top").substring(0,jQuery(name).css("top").indexOf("px")));
	jQuery(window).scroll(function () { 
		offset = menuYloc+jQuery(document).scrollTop()+"px";
		jQuery(name).animate({top:offset},{
			duration: 0,
			queue: false
		});
	});
}); 
