jQuery(document).ready(function($) {
if($("meta[name=toTop]").attr("content")=="true"){
$("
").appendTo('body');
$("#toTop").css({
width: '50px',
height: '50px',
bottom:'30px',
right:'25px',
position:'fixed',
cursor:'pointer',
zIndex:'999999',
});
if($(this).scrollTop()==0){
$("#toTop").hide();
}
$(window).scroll(function(event) {
/* Act on the event */
if($(this).scrollTop()==0){
$("#toTop").hide();
}
if($(this).scrollTop()!=0){
$("#toTop").show();
}
});
$("#toTop").click(function(event) {
/* Act on the event */
$("html,body").animate({
scrollTop:"0px"},
900
)
});
}
});