$(document).ready(function() { // animation for the clients all and contacts all box 
$('.listings_box').click(function() {
  $('#slidecontent').slideDown('slow', function() {
    // Animation complete.
  });
});

    $('.listings_box_close').live('click', function() { // close the parent element - #slidecontent
          $('.listings_box_close').parent().hide();
      });


});
