$().ready(function(){
		$("img.roll").hover(		//Alle img mit der Klasse roll werden Rollovers
				function(){
					$(this).attr("src",
					$(this).attr("src").split('_lo').join('_hi'))
				},
				function(){
					$(this).attr("src", $(this).attr("src").split('_hi').join('_lo'))
				});
	});

