document.write("");
document.write("
");
function changeOnline(num) {
if (isNaN(num) && num == "")
return;
for (var i = 1; i <= 6 ; i++) {
if (i == num) {
document.getElementById("onlineSort" + i).className = "online_bar expand";
document.getElementById("onlineType" + i).style.display = "block";
}
else {
document.getElementById("onlineSort" + i).className = "online_bar collapse";
document.getElementById("onlineType" + i).style.display = "none";
}
}
}
jQuery(document).ready(function () {
jQuery("#floatShow").bind("click", function () {
jQuery('#onlineService').animate({ width: 'show', opacity: 'show' }, 'normal', function () { jQuery('#onlineService').show(); }); jQuery('#floatShow').attr('style', 'display:none'); jQuery('#floatHide').attr('style', 'display:block');
return false;
});
jQuery.fn.isChildAndSelfOf = function (b) {
return (this.closest(b).length > 0);
};
jQuery.fn.isChildOf = function (b) {
return (this.parents(b).length > 0);
};
$("#floatShow").click();
//jQuery(window).scroll(function(){
//jQuery('#online_qq_layer').stop().animate({top:jQuery(document).scrollTop() + jQuery("#online_qq_layer").height()}, 100)
//});
});