document.write(""
+""
+"
"
+"\n");
jQuery(window).scroll(function(){
if(jQuery(document).scrollTop()>jQuery('.mainbox').offset().top-110)
{
if((jQuery(document).scrollTop()+jQuery(window).height())>jQuery('.page_foot').offset().top)
{jQuery('.OnlineService').css({'bottom':(jQuery(document).scrollTop()-jQuery('.page_foot').offset().top+jQuery(window).height()) + 'px'});}
else
{jQuery('.OnlineService').css({'bottom':'0px'});}
jQuery('.OnlineService').stop().animate({right:'0px'},200);
}
else
{jQuery('.OnlineService').stop().animate({right:'-50px'},100);}
});
jQuery(function(){
jQuery('.OnlineService').find('li').hover(
function(){
jQuery(this).find('.jquery_title').stop().show(200);
jQuery(this).find('.jquery_hover').stop().animate({opacity:'1'},300);
if(jQuery(this).find('div .jquery_hover').length > 0){jQuery(this).find('div').stop().animate({width:'150px'},300);}
},
function(){
jQuery(this).find('.jquery_title').stop().hide(200);
jQuery(this).find('.jquery_hover').stop().animate({opacity:'0'},300);
if(jQuery(this).find('div .jquery_hover').length > 0){jQuery(this).find('div').stop().animate({width:'50px'},300);}
}
);
});