jQuery.noConflict();
jQuery(document).ready(function($) {
	$('a[href=#content]').click(function() {
    	$('html, body').animate({scrollTop:0}, 'slow');
    		return false;
   	});
	$('a[href=#respond]').click(function() {
		var position = $('#respond').offset(); // position = { left: 42, top: 567 }	
    	$('html, body').animate({scrollTop:position.top}, 'slow');
    		return false;
   	});
});

