jQuery(document).ready(function(){$('a img').each(function(){$(this).hover(function(){$(this).stop().animate({opacity:1.0},500)},function(){$(this).stop().animate({opacity:0.8},500)})})});function show_visible(selector){if(jQuery(selector).is(":hidden")){jQuery(selector).slideDown("slow")}else{jQuery(selector).slideUp("slow")}}$(function(){$('a[href*=#]').click(function(){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){var targetOffset=$target.offset().top;$('html,body').animate({scrollTop:targetOffset},700);return false}}})});