$(document).ready(function(){

	$("div.proces-compra li").hover(function(){
		$("img#imatge-proces").attr("src","/src/io/views/resources/images/"+$(this).attr("id")+".jpg");
	},function(){
		$("img#imatge-proces").attr("src","/src/io/views/resources/images/temporal.jpg");
	});

});