// ** Index **************************************

$(function()
{

	$("#indexbox ul.byletter").hover(function()
	{
		$(this).stop(1,1).animate({ width: 670 });	
	}, function()
	{
		$(this).animate({ width: 130 });
	});
	
	$("#indexbox ul.bydate").hover(function()
	{
		$(this).stop(1,1).animate({ width: 530 });	
	}, function()
	{
		$(this).animate({ width: 130 });
	});
});
