$(document).ready(function(){
  //$('a.lightbox').lightbox();
  $('a.popup').click(function(){ window.open(this.href); return false; });
  $('img.contactshow').click(function()
    {
    //$(this).parent().children("div").toggle("slow");
      if ( $(this).parent().children("div").is(':hidden') ) {
        $(this).parent().children("div").show();
        $(this).attr("src","/images/btn_hide_contact_details.jpg");

      } 
      else
      {
        $(this).parent().children("div").hide();
        
        $(this).attr("src","/images/btn_view_contact_details.jpg");
      }
    }
  );
});