//smooth scrolling
$(document).ready(function() {
  $('a[@href*=#]').click(function() {
		if (this.hash == '#random' || this.hash == '#relatedPost' || this.hash == '#recentPost') {
      return false;		
		} else {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') 
      && location.hostname == this.hostname) {
       var $target = $(this.hash);
       $target = $target.length && $target || $('[@name=' + this.hash.slice(1) +']');
       if ($target.length) {
           $target.ScrollTo(800);
           return false;
       }
		};
    };
  });
});