$(document).ready( function() {
	$('#our-network-button').click(function(){
		var top = parseInt($('#header').css('top').replace('px', ''));
		
		if( top == 0 ) {
			$('#header').animate({'top': '-82px'});
			$(this).removeClass('active-network-button');
		}else {
			$('#header').animate({'top': '0'});
			$(this).addClass('active-network-button');
		}
		return false;
	});
});