$('#l1,#l2,#l3,#l4,#l5,#l6,#l7').hover(function() {
$(this).fadeOut(300);
$("#" + this.id + "c").fadeIn(300);
});
$('#l1c,#l2c,#l3c,#l4c,#l5c,#l6c,#l7c').mouseout(function() {
$(this).fadeOut(300);
$("#" + this.id.substring(0, this.id.length - 1)).fadeIn(300);
});