$(function(){
	var target = 'a.sticker img, a#meal-ticket img';
	$(target).each(function(){
		var imgpath = $(this).attr("src");
		var imgpathover = imgpath.replace(/.png/,"-over.png");
		$(this).mouseover(function(){
			$(this).attr("src", imgpathover);
		}).mouseout(function(){
			$(this).attr("src", imgpath);
		});
	});
});