	$(document).ready(function(){
											 
 		$('a').click(function(){
  			$('html, body').animate({ 
                 scrollTop: $($(this).attr("href"))
                 .offset().top }, 1000);
   			return false;
 		});
	});
	
	function anichange (objName) {
  		if ( $(objName).css('display') == 'none' ) {
    		$(objName).animate({height: 'show'}, 200);
  		} else {
    		$(objName).animate({height: 'hide'}, 200);
  		}
		$('.logo').pngfix();
}
