$(document).ready(function(){
	$(".petitecase1").each(function() {
		$(this).mouseover(function() {
			$(this).addClass("showlabel");
		});
		$(this).mouseout(function() {
			$(this).removeClass("showlabel");
		});
	});
});