$(document).ready(function() 
{	
 $("#marginal ul li a").hover(function()  {
	 
	 
	$(this).children("span").css("width","0px");
	$(this).children("span").css("overflow","hidden");
	$(this).children("span").css("left","0px");
	$(this).children("span").css("display","block");
	
	$(this).children("span").animate({
    	width: 215,
		left: -225,
	});
 });
 $("#marginal ul li a img").hover(function()  {
	var pfad = $(this).attr("src");
	pfadEnd = pfad.substring(pfad.length - 5,pfad.length);
	var replacePath = pfad.substring(0, pfad.length - 5);	
	$(this).attr("src",replacePath + "1.jpg");	 
 });


  $("#marginal ul li a img").mouseleave(function()  {
	var pfad = $(this).attr("src");
	pfadEnd = pfad.substring(pfad.length - 5,pfad.length);
	var replacePath = pfad.substring(0, pfad.length - 5);
	$(this).attr("src",replacePath + "0.jpg");
	$(this).parent("a").children("span").css("width","0px");
 });

});
