$(document).ready(function(){
	$('#menu a')
		.css( {backgroundPosition: "0 5px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:200})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 5px)"}, {duration:100})
		});
	$('#menu a.active')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:200})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:100})
		});
		
	$('h2').sifr( {
		font: 'swf/humanist',
		textAlign: 'left',
		color: '#fff'
	});

});
