$(document).ready(function()
{
	slide_search_box("#search_box", 500, .8);
	slide_nav("#menu", 600, .8)
});

function slide_search_box(header_id, time, multiplier) {

	var search_box = header_id;

	var timer = 0;

	$(search_box).css("margin-top","-40px");

	timer = (timer*multiplier + time);
	$(search_box).animate({ marginTop: "0" }, 800);

}

function slide_nav(header_id, time, multiplier) {

	var list_elements = header_id + " a";

	var timer = 0;

	$(list_elements).each(function(i) {

		$(this).css("margin-top","-40px");

		timer = (timer*multiplier + time);
		$(this).animate({ marginTop: "0" }, timer);

	});

	$(list_elements).each(function(i) {

		$(this).hover(
		function() {
			$(this).animate({ marginTop: "5px" }, 150);
		},
		function() {
			$(this).animate({ marginTop: "0"}, 150);
		});
	});

}
