$(document).ready(function(){$('.inner-shadow').parent().append('<div class="inner-shadow-effect"></div>');$('a#anchor1').addClass("selected");$("a.anchorLink").anchorAnimate();var data={'#post-2':'#anchor1','#post-3':'#anchor2','#post-4':'#anchor3','#post-7':'#anchor4','#post-8':'#anchor5'};$.each(data,function(key,value){$(key).mouseenter(function(){$("a.selected").removeClass("selected");$(value).addClass('selected');})});});jQuery.fn.anchorAnimate=function(settings){settings=jQuery.extend({speed:1000},settings);return this.each(function(){var caller=this
$(caller).click(function(event){event.preventDefault()
var locationHref=window.location.href
var elementClick=$(caller).attr("href")
$("a.selected").removeClass("selected");$(caller).addClass("selected");var destination=$(elementClick).offset().top;$("html:not(:animated),body:not(:animated)").animate({scrollTop:destination},settings.speed,function(){window.location.hash=elementClick});return false;})})}