(function($){
  siteFunctions = function() {
    // menu effects
			
	$('#menu a')
		.css( {backgroundPosition: "-20px 0px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(-20px -60px)"}, {duration:500})
			.css( {color: "#e8e8e8"} )
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(80px -10px)"}, {duration:200, complete:function(){
				$(this).css({backgroundPosition: "-20px 0px"})
				.css( {color: "#b1b1b1"} )
			}})
		})
		
		
		$('.infoBut a').click(function() {
			$('#comments').toggle(400);
			$('html, body').animate({
				scrollTop: $(".infoBut").offset().top
			}, 2000);
			return false;
		});
		
		$("#footerBar").center({
			vertical: false
		});
		
		$("#footerBar").fadeIn(500);
		
  };
})(jQuery);
