  $(document).ready(function(){
/*lastBlock = $("#a1");
    maxWidth = 225;
	minWidth = 120;	*/
    
  /*  $("ul#product li a").hover(	
		function(){			
			$(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
			$(this).animate({width: maxWidth+"px"}, { queue:false, duration:400});
			currentBlock = this;				
			lastBlock = this;		
	    },function(){
			//nothing to see here
			}	
	);*/
	$('a.replace').click(function(){
			$('#fotobox').css({backgroundImage : "url("+this.href+")"});
			if($(this).is(':has(span)')){ // check if there is a <span> first
				$('#replace').html($(this).children('span')[0].innerHTML);
			}
			return false;
			}
		)
  });
