$(document).ready(function()
{
	slide("#slider", 10, 0, 150, .8);
});

function slide(navigation_id, pad_out, pad_in, time, multiplier)
{
	// creates the target paths
	var list_elements = navigation_id + " li";
	
	// initiates the timer used for the sliding animation
	var timer = 0;
	
	// creates the slide animation for all list elements 
	$(list_elements).each(function(i)
	{
		// margin top = - ([width of element] + [total vertical padding of element])
		$(this).css("margin-top","15px");
		// updates timer
		timer = (timer*multiplier + time);
		$(this).animate({ marginTop: "0" }, timer);
		$(this).animate({ marginTop: "15px" }, timer);
		$(this).animate({ marginTop: "0" }, timer);
	});

	// creates the hover-slide effect for all link elements 		
	$(list_elements).each(function(i)
	{
		$(this).hover(
		function()
		{
			$(this).animate({ paddingTop: pad_out }, 150)
			.animate({ color: 'darkred' }, 500);
		},		
		function()
		{
			$(this).animate({ paddingTop: pad_in }, 250)
			.animate({ color: '#888' }, 500);
		});
	});
}

