$('document').ready(
function()
{
  $('.loaderShower').click(
    function(event)
   {
      $(this).parent().children('.loader').show();
      $(this).parent().children('.loaderContainer').children('.loader').show();
   });
});
