$(document).ready(function() {

// error messages box
$(".info a,.success a,.warning a,.error a").live('click',function(e){
    $(this).parent().fadeOut("slow");
    e.preventDefault();
    e.stopPropagation();
   });
});
