/*
 * Camyks Engine
 * Company		: Ideogram Design
 * Author		: JB Lebrun <jb.lebrun@ideogram-design.fr>
 * Camyks Version   	: 1.0a
 * Object Version	: 1.0
 * Object Type          : Plugin / Module Scripts
 * Create Date		: Dec 2007
 * Last Modif Date	: Dec 2007
 *
 * Content_ideogramContactMap module site layout
*/

contactmap_selected = 0;

function contactmap_swap( map ) {
  if ( document.getElementById('map'+contactmap_selected ) && document.getElementById('map'+map ) ) {
    document.getElementById('map'+contactmap_selected ).style.display="none";
    document.getElementById('map'+map ).style.display="block";
    contactmap_selected = map;
  }
}
