function change_image(id)
{
   
    //if exists hide all
    if (el = document.getElementById('image' + id)) 
    {
        jQuery('.images').hide();
        
        //show image
        jQuery('#image' + id).show();
    }
    
    return false;
    
    
    
    
}
        
