$(document).ready(function(){
	// scrolling for anchors
	$('a[href^=#][href!=#]','#content').live('click',function(e){
		$('html,body').animate({'scrollTop': $($(this).attr('href')).offset().top+'px'}, 1500, 'easeOutQuad'); 
		e.preventDefault();
	});
});
