// Template setup
$(document).ready(function()
{
	// Keywords
	$('#keywords li a').hover(function()
	{
		$(this).css({'padding-right':'0'}).animate({paddingRight:'8px'}, 100);
	}, function()
	{
		$(this).css({'padding-right':'8px'}).animate({paddingRight:'0'}, 100);
	});
	
	// Header links
	$('#header-links li a').hover(function()
	{
		$(this).css({'padding-bottom':'6px', 'border-bottom-width':'0'}).animate({borderBottomWidth:'6px', paddingBottom:'0'}, 100);
	}, function()
	{
		$(this).css({'padding-bottom':'0', 'border-bottom-width':'6px'}).animate({borderBottomWidth:'0', paddingBottom:'6px'}, 100);
	});
});

