
//requires jQuery


//wait for the DOM to be loaded
jQuery( document ).ready( function() {
	
	//Activate contact map.
	$( 'ul#contactMap' ).addClass( 'contactMap' );
	
	//$( 'ul.contactMap li' ).addClass( 'out' );
	
	$( 'ul.contactMap li' ).hover(
		function () {
        	$(this).addClass( 'active' );
			//$(this).removeClass( 'out' );
      	}, 
      	function () {
			//$(this).addClass( 'out' );
        	$(this).removeClass( 'active' );
      	}
    );
	
} );

