/*$(document).ready(function()
{
	var image = null;
	$('ul li a').attr("href","javascript:void(0)").bind("click",function()
	{
		image = $(this).attr("style").replace("background-image: url(","").replace(");","");
		$(this).load(image, function(){
   			$(this).animate(
			{
				"width": image.Width() + "px"
			},
			500
			);
 		});
	});
});*/