$(document).ready(function() {
	
 	var $j = jQuery.noConflict();
 	
	$j("#scrolltop").click(function(){
			$j("html, body").animate({ scrollTop: 0 }, {
	        duration: 'slow',
	        easing: 'easeInOutQuad'
	    });
	    return false;
	}); 
});
