﻿$(function(){
	$('a.reveal').click(function() {
		$('#highbar').animate({
			"height" : "420px"
		}, 1000);
	});
});

$(function(){
	$('a.close').click(function() {
		$('#highbar').animate({
			"height" : "95px"
		}, 500);
	});
});
