/* Animated Scrolling with jQuery by I Love Copy And Paste
 * http://ilovecopyandpaste.com
 *
 * Copyright (c) 2009 I Love Copy And Paste
 * Licensed under CC ANC 3.0 Unported
 * http://creativecommons.org/licenses/by-nc/3.0/
 *
 * Last Revision May 20 (3)
 */
$(document).ready(function(){$('a[href*=#]').click(function(){if(location.pathname==this.pathname){try{var $target=$(this.hash);var $offset=$target.offset().top;}catch(err){var $offset='0';}$('html,body').animate({scrollTop:$offset-40},'slow');return false;}});});