jQuery.noConflict();jQuery(document).ready(function(){	jQuery('#toTop').fadeOut();	jQuery(function () {		jQuery(window).scroll(function () {		        if (jQuery(this).scrollTop() != 0) {		            jQuery('#toTop').fadeIn();		        } else {		            jQuery('#toTop').fadeOut();		        }		    });		    jQuery('#toTop').click(function () {		        jQuery('body,html').animate({		            scrollTop: 0		        },		        800);		    });	});	});/*jQuery.noConflict();jQuery(document).ready(function(){	jQuery(function () {		jQuery('#toTop').fadeOut();		jQuery(window).scroll(function () {		        if (jQuery(this).scrollTop() != 0) {		            jQuery('#toTop').fadeIn();		        } else {		            jQuery('#toTop').fadeOut();		        }		    });		    jQuery('#toTop').click(function () {		        jQuery('body,html').animate({		            scrollTop: 0		        },		        800);		    });		jQuery(window).scroll(function () {		        if ((jQuery(this).scrollTop() > 0) || (jQuery(this).scrollTop() > 8000)) {		            jQuery('#toBottom').fadeOut();		        } else {					jQuery('#toBottom').fadeIn();		        }		    });		    jQuery('#toBottom').click(function () {		        jQuery('body,html').animate({		            scrollTop: 8000		        },		        800);		    });		});	});*/
